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

Side by Side Diff: mojo/examples/nesting_app/nesting_app.cc

Issue 344013003: mv services/navigation.mojom services/public/interfaces/navigation.mojom (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
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/basictypes.h" 5 #include "base/basictypes.h"
6 #include "base/bind.h" 6 #include "base/bind.h"
7 #include "base/strings/stringprintf.h" 7 #include "base/strings/stringprintf.h"
8 #include "mojo/examples/window_manager/window_manager.mojom.h" 8 #include "mojo/examples/window_manager/window_manager.mojom.h"
9 #include "mojo/public/cpp/application/application.h" 9 #include "mojo/public/cpp/application/application.h"
10 #include "mojo/services/navigation/navigation.mojom.h"
11 #include "mojo/services/public/cpp/view_manager/node.h" 10 #include "mojo/services/public/cpp/view_manager/node.h"
12 #include "mojo/services/public/cpp/view_manager/node_observer.h" 11 #include "mojo/services/public/cpp/view_manager/node_observer.h"
13 #include "mojo/services/public/cpp/view_manager/view.h" 12 #include "mojo/services/public/cpp/view_manager/view.h"
14 #include "mojo/services/public/cpp/view_manager/view_manager.h" 13 #include "mojo/services/public/cpp/view_manager/view_manager.h"
15 #include "mojo/services/public/cpp/view_manager/view_manager_delegate.h" 14 #include "mojo/services/public/cpp/view_manager/view_manager_delegate.h"
16 #include "mojo/services/public/cpp/view_manager/view_observer.h" 15 #include "mojo/services/public/cpp/view_manager/view_observer.h"
16 #include "mojo/services/public/interfaces/navigation/navigation.mojom.h"
17 #include "ui/events/event_constants.h" 17 #include "ui/events/event_constants.h"
18 #include "url/gurl.h" 18 #include "url/gurl.h"
19 19
20 using mojo::view_manager::Node; 20 using mojo::view_manager::Node;
21 using mojo::view_manager::NodeObserver; 21 using mojo::view_manager::NodeObserver;
22 using mojo::view_manager::View; 22 using mojo::view_manager::View;
23 using mojo::view_manager::ViewManager; 23 using mojo::view_manager::ViewManager;
24 using mojo::view_manager::ViewManagerDelegate; 24 using mojo::view_manager::ViewManagerDelegate;
25 using mojo::view_manager::ViewObserver; 25 using mojo::view_manager::ViewObserver;
26 26
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 }; 127 };
128 128
129 } // namespace examples 129 } // namespace examples
130 130
131 // static 131 // static
132 Application* Application::Create() { 132 Application* Application::Create() {
133 return new examples::NestingApp; 133 return new examples::NestingApp;
134 } 134 }
135 135
136 } // namespace mojo 136 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/examples/image_viewer/image_viewer.cc ('k') | mojo/examples/window_manager/window_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698