~robertcarr/mir/add-log-all-option

« back to all changes in this revision

Viewing changes to examples/demo-shell/demo_shell.cpp

  • Committer: Tarmac
  • Author(s): Alan Griffiths
  • Date: 2013-11-01 10:09:33 UTC
  • mfrom: (1182.1.9 mir2)
  • Revision ID: tarmac-20131101100933-oxdyp7o5o02pgon0
shell: avoid publishing some internal headers.

Approved by PS Jenkins bot, Alexandros Frantzis.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
#include "mir/run_mir.h"
26
26
#include "mir/report_exception.h"
27
 
#include "mir/shell/session_manager.h"
28
 
#include "mir/shell/registration_order_focus_sequence.h"
29
 
#include "mir/shell/default_focus_mechanism.h"
30
27
#include "mir/shell/session_container.h"
31
 
#include "mir/shell/organising_surface_factory.h"
32
28
#include "mir/graphics/display.h"
33
29
#include "mir/input/composite_event_filter.h"
34
30
 
97
93
            // We use this strange two stage initialization to avoid a circular dependency between the EventFilters
98
94
            // and the SessionStore
99
95
            wm->set_focus_controller(config.the_focus_controller());
100
 
            wm->set_session_manager(config.the_session_manager());
101
96
            wm->set_display(config.the_display());
102
97
            wm->set_compositor(config.the_compositor());
103
98
        });