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

Side by Side Diff: examples/window_manager/window_manager.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/window_manager/BUILD.gn ('k') | examples/window_manager/window_manager.mojom » ('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 "base/bind.h" 5 #include "base/bind.h"
6 #include "base/macros.h" 6 #include "base/macros.h"
7 #include "examples/window_manager/debug_panel_host.mojom.h" 7 #include "examples/window_manager/debug_panel_host.mojom.h"
8 #include "examples/window_manager/window_manager.mojom.h" 8 #include "examples/window_manager/window_manager.mojom.h"
9 #include "mojo/application/application_runner_chromium.h" 9 #include "mojo/application/application_runner_chromium.h"
10 #include "mojo/common/binding_set.h" 10 #include "mojo/common/binding_set.h"
11 #include "mojo/converters/geometry/geometry_type_converters.h" 11 #include "mojo/converters/geometry/geometry_type_converters.h"
12 #include "mojo/converters/input_events/input_events_type_converters.h" 12 #include "mojo/converters/input_events/input_events_type_converters.h"
13 #include "mojo/public/c/system/main.h" 13 #include "mojo/public/c/system/main.h"
14 #include "mojo/public/cpp/application/application_connection.h" 14 #include "mojo/public/cpp/application/application_connection.h"
15 #include "mojo/public/cpp/application/application_delegate.h" 15 #include "mojo/public/cpp/application/application_delegate.h"
16 #include "mojo/public/cpp/application/application_impl.h" 16 #include "mojo/public/cpp/application/application_impl.h"
17 #include "mojo/public/cpp/application/service_provider_impl.h" 17 #include "mojo/public/cpp/application/service_provider_impl.h"
18 #include "mojo/public/cpp/bindings/strong_binding.h" 18 #include "mojo/public/cpp/bindings/strong_binding.h"
19 #include "mojo/services/input_events/public/interfaces/input_events.mojom.h" 19 #include "mojo/services/input_events/interfaces/input_events.mojom.h"
20 #include "mojo/services/navigation/public/interfaces/navigation.mojom.h" 20 #include "mojo/services/navigation/public/interfaces/navigation.mojom.h"
21 #include "mojo/services/view_manager/public/cpp/view.h" 21 #include "mojo/services/view_manager/public/cpp/view.h"
22 #include "mojo/services/view_manager/public/cpp/view_manager.h" 22 #include "mojo/services/view_manager/public/cpp/view_manager.h"
23 #include "mojo/services/view_manager/public/cpp/view_manager_delegate.h" 23 #include "mojo/services/view_manager/public/cpp/view_manager_delegate.h"
24 #include "mojo/services/view_manager/public/cpp/view_observer.h" 24 #include "mojo/services/view_manager/public/cpp/view_observer.h"
25 #include "services/window_manager/basic_focus_rules.h" 25 #include "services/window_manager/basic_focus_rules.h"
26 #include "services/window_manager/view_target.h" 26 #include "services/window_manager/view_target.h"
27 #include "services/window_manager/window_manager_app.h" 27 #include "services/window_manager/window_manager_app.h"
28 #include "services/window_manager/window_manager_delegate.h" 28 #include "services/window_manager/window_manager_delegate.h"
29 #include "services/window_manager/window_manager_root.h" 29 #include "services/window_manager/window_manager_root.h"
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 ++current_index_; 551 ++current_index_;
552 } 552 }
553 553
554 } // namespace examples 554 } // namespace examples
555 } // namespace mojo 555 } // namespace mojo
556 556
557 MojoResult MojoMain(MojoHandle application_request) { 557 MojoResult MojoMain(MojoHandle application_request) {
558 mojo::ApplicationRunnerChromium runner(new mojo::examples::WindowManager); 558 mojo::ApplicationRunnerChromium runner(new mojo::examples::WindowManager);
559 return runner.Run(application_request); 559 return runner.Run(application_request);
560 } 560 }
OLDNEW
« no previous file with comments | « examples/window_manager/BUILD.gn ('k') | examples/window_manager/window_manager.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698