~kdub/mir/snapshot-error-checking

« back to all changes in this revision

Viewing changes to src/client/default_connection_configuration.h

  • Committer: Tarmac
  • Author(s): Alan Griffiths
  • Date: 2013-12-19 11:19:08 UTC
  • mfrom: (1288.1.2 mir)
  • Revision ID: tarmac-20131219111908-q2sm4w6trpl02rk4
client: slim down the mcl::SurfaceMap interface.

Approved by Daniel van Vugt, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
public:
48
48
    DefaultConnectionConfiguration(std::string const& socket_file);
49
49
 
50
 
    std::shared_ptr<SurfaceMap> the_surface_map();
 
50
    std::shared_ptr<ConnectionSurfaceMap> the_surface_map();
51
51
    std::shared_ptr<rpc::MirBasicRpcChannel> the_rpc_channel();
52
52
    std::shared_ptr<mir::logging::Logger> the_logger();
53
53
    std::shared_ptr<ClientPlatformFactory> the_client_platform_factory();
64
64
    CachedPtr<mir::logging::Logger> logger;
65
65
    CachedPtr<ClientPlatformFactory> client_platform_factory;
66
66
    CachedPtr<input::receiver::InputPlatform> input_platform;
67
 
    CachedPtr<SurfaceMap> surface_map;
 
67
    CachedPtr<ConnectionSurfaceMap> surface_map;
68
68
    CachedPtr<DisplayConfiguration> display_configuration;
69
69
    CachedPtr<LifecycleControl> lifecycle_control;
70
70