~ubuntu-branches/ubuntu/vivid/mir/vivid

« back to all changes in this revision

Viewing changes to src/server/graphics/nested/nested_platform.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-02-04 14:49:07 UTC
  • mto: This revision was merged to the branch mainline in revision 61.
  • Revision ID: package-import@ubuntu.com-20140204144907-o3ruhix0ey26lchl
Tags: upstream-0.1.4+14.04.20140204
ImportĀ upstreamĀ versionĀ 0.1.4+14.04.20140204

Show diffs side-by-side

added added

removed removed

Lines of Context:
113
113
    return native_platform->create_buffer_allocator(buffer_initializer);
114
114
}
115
115
 
116
 
std::shared_ptr<mg::Display> mgn::NestedPlatform::create_display(std::shared_ptr<mg::DisplayConfigurationPolicy> const& /*initial_conf_policy*/)
 
116
std::shared_ptr<mg::Display> mgn::NestedPlatform::create_display(std::shared_ptr<mg::DisplayConfigurationPolicy> const& conf_policy)
117
117
{
118
 
    return std::make_shared<mgn::NestedDisplay>(connection, event_handler, display_report);
 
118
    return std::make_shared<mgn::NestedDisplay>(connection, event_handler, display_report, conf_policy);
119
119
}
120
120
 
121
121
std::shared_ptr<mg::PlatformIPCPackage> mgn::NestedPlatform::get_ipc_package()