Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(344)

Side by Side Diff: examples/wm_flow/wm/wm.cc

Issue 1398973004: Move //mojo/services/X/public/... to //mojo/services/X/... (part 2). (Closed) Base URL: https://github.com/domokit/mojo.git@no_public_1
Patch Set: add missing copyright notices Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « examples/wm_flow/BUILD.gn ('k') | mojo/converters/geometry/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "examples/wm_flow/wm/frame_controller.h" 5 #include "examples/wm_flow/wm/frame_controller.h"
6 #include "mojo/application/application_runner_chromium.h" 6 #include "mojo/application/application_runner_chromium.h"
7 #include "mojo/public/c/system/main.h" 7 #include "mojo/public/c/system/main.h"
8 #include "mojo/public/cpp/application/application_delegate.h" 8 #include "mojo/public/cpp/application/application_delegate.h"
9 #include "mojo/public/cpp/application/application_impl.h" 9 #include "mojo/public/cpp/application/application_impl.h"
10 #include "mojo/public/cpp/application/service_provider_impl.h" 10 #include "mojo/public/cpp/application/service_provider_impl.h"
11 #include "mojo/services/input_events/public/interfaces/input_events.mojom.h" 11 #include "mojo/services/input_events/interfaces/input_events.mojom.h"
12 #include "mojo/services/view_manager/public/cpp/view_manager.h" 12 #include "mojo/services/view_manager/public/cpp/view_manager.h"
13 #include "mojo/services/view_manager/public/cpp/view_manager_delegate.h" 13 #include "mojo/services/view_manager/public/cpp/view_manager_delegate.h"
14 #include "mojo/services/view_manager/public/cpp/view_observer.h" 14 #include "mojo/services/view_manager/public/cpp/view_observer.h"
15 #include "services/window_manager/basic_focus_rules.h" 15 #include "services/window_manager/basic_focus_rules.h"
16 #include "services/window_manager/window_manager_app.h" 16 #include "services/window_manager/window_manager_app.h"
17 #include "services/window_manager/window_manager_delegate.h" 17 #include "services/window_manager/window_manager_delegate.h"
18 #include "services/window_manager/window_manager_root.h" 18 #include "services/window_manager/window_manager_root.h"
19 #include "url/gurl.h" 19 #include "url/gurl.h"
20 20
21 namespace examples { 21 namespace examples {
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 150
151 DISALLOW_COPY_AND_ASSIGN(SimpleWM); 151 DISALLOW_COPY_AND_ASSIGN(SimpleWM);
152 }; 152 };
153 153
154 } // namespace examples 154 } // namespace examples
155 155
156 MojoResult MojoMain(MojoHandle application_request) { 156 MojoResult MojoMain(MojoHandle application_request) {
157 mojo::ApplicationRunnerChromium runner(new examples::SimpleWM); 157 mojo::ApplicationRunnerChromium runner(new examples::SimpleWM);
158 return runner.Run(application_request); 158 return runner.Run(application_request);
159 } 159 }
OLDNEW
« no previous file with comments | « examples/wm_flow/BUILD.gn ('k') | mojo/converters/geometry/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698