Chromium Code Reviews

Side by Side Diff: services/window_manager/window_manager_app.cc

Issue 1391243003: Move //mojo/services/X/public/... to //mojo/services/X/... (part 4). (Closed) Base URL: https://github.com/domokit/mojo.git@no_public_3-x-no_public_2-x-no_public_1
Patch Set: copyright header Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "services/window_manager/window_manager_app.h" 5 #include "services/window_manager/window_manager_app.h"
6 6
7 #include "base/message_loop/message_loop.h" 7 #include "base/message_loop/message_loop.h"
8 #include "base/stl_util.h" 8 #include "base/stl_util.h"
9 #include "mojo/converters/geometry/geometry_type_converters.h" 9 #include "mojo/converters/geometry/geometry_type_converters.h"
10 #include "mojo/converters/input_events/input_events_type_converters.h" 10 #include "mojo/converters/input_events/input_events_type_converters.h"
11 #include "mojo/public/cpp/application/application_connection.h" 11 #include "mojo/public/cpp/application/application_connection.h"
12 #include "mojo/public/cpp/application/application_impl.h" 12 #include "mojo/public/cpp/application/application_impl.h"
13 #include "mojo/public/interfaces/application/shell.mojom.h" 13 #include "mojo/public/interfaces/application/shell.mojom.h"
14 #include "mojo/services/view_manager/public/cpp/view.h" 14 #include "mojo/services/view_manager/cpp/view.h"
15 #include "mojo/services/view_manager/public/cpp/view_manager.h" 15 #include "mojo/services/view_manager/cpp/view_manager.h"
16 #include "services/window_manager/capture_controller.h" 16 #include "services/window_manager/capture_controller.h"
17 #include "services/window_manager/focus_controller.h" 17 #include "services/window_manager/focus_controller.h"
18 #include "services/window_manager/focus_rules.h" 18 #include "services/window_manager/focus_rules.h"
19 #include "services/window_manager/hit_test.h" 19 #include "services/window_manager/hit_test.h"
20 #include "services/window_manager/view_event_dispatcher.h" 20 #include "services/window_manager/view_event_dispatcher.h"
21 #include "services/window_manager/view_target.h" 21 #include "services/window_manager/view_target.h"
22 #include "services/window_manager/view_targeter.h" 22 #include "services/window_manager/view_targeter.h"
23 #include "services/window_manager/window_manager_delegate.h" 23 #include "services/window_manager/window_manager_delegate.h"
24 #include "services/window_manager/window_manager_root.h" 24 #include "services/window_manager/window_manager_root.h"
25 25
(...skipping 29 matching lines...)
55 55
56 void WindowManagerApp::Create( 56 void WindowManagerApp::Create(
57 ApplicationConnection* connection, 57 ApplicationConnection* connection,
58 mojo::InterfaceRequest<mojo::WindowManager> request) { 58 mojo::InterfaceRequest<mojo::WindowManager> request) {
59 // WindowManagerRoot manages its own lifetime. 59 // WindowManagerRoot manages its own lifetime.
60 new WindowManagerRoot(app_impl_, connection, controller_factory_, 60 new WindowManagerRoot(app_impl_, connection, controller_factory_,
61 request.Pass()); 61 request.Pass());
62 } 62 }
63 63
64 } // namespace window_manager 64 } // namespace window_manager
OLDNEW
« no previous file with comments | « services/window_manager/window_manager_app.h ('k') | services/window_manager/window_manager_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine