~hikiko/mir/mir.unity8-desktop-session

« back to all changes in this revision

Viewing changes to include/test/mir_test_doubles/stub_shell.h

  • Committer: Stephen M. Webb
  • Date: 2014-02-25 20:15:07 UTC
  • mfrom: (61.1.1 trusty-proposed)
  • Revision ID: stephen.webb@canonical.com-20140225201507-cicfzmdznvr059b2
mergedĀ fromĀ Ubuntu

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    StubShell() : stub_session(std::make_shared<StubSession>())
35
35
    {
36
36
    }
37
 
    std::shared_ptr<frontend::Session> open_session(std::string const& /* name */, std::shared_ptr<frontend::EventSink> const& /* sink */) override
 
37
    std::shared_ptr<frontend::Session> open_session(pid_t, std::string const& /* name */, std::shared_ptr<frontend::EventSink> const& /* sink */) override
38
38
    {
39
39
        return stub_session;
40
40
    }