| OLD | NEW |
| 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/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
| 9 #include "mojo/examples/window_manager/window_manager.mojom.h" | 9 #include "mojo/examples/window_manager/window_manager.mojom.h" |
| 10 #include "mojo/public/cpp/application/application.h" | 10 #include "mojo/public/cpp/application/application.h" |
| 11 #include "mojo/services/navigation/navigation.mojom.h" | |
| 12 #include "mojo/services/public/cpp/view_manager/node.h" | 11 #include "mojo/services/public/cpp/view_manager/node.h" |
| 13 #include "mojo/services/public/cpp/view_manager/node_observer.h" | 12 #include "mojo/services/public/cpp/view_manager/node_observer.h" |
| 14 #include "mojo/services/public/cpp/view_manager/view.h" | 13 #include "mojo/services/public/cpp/view_manager/view.h" |
| 15 #include "mojo/services/public/cpp/view_manager/view_manager.h" | 14 #include "mojo/services/public/cpp/view_manager/view_manager.h" |
| 16 #include "mojo/services/public/cpp/view_manager/view_manager_delegate.h" | 15 #include "mojo/services/public/cpp/view_manager/view_manager_delegate.h" |
| 17 #include "mojo/services/public/cpp/view_manager/view_observer.h" | 16 #include "mojo/services/public/cpp/view_manager/view_observer.h" |
| 17 #include "mojo/services/public/interfaces/navigation/navigation.mojom.h" |
| 18 #include "ui/events/event_constants.h" | 18 #include "ui/events/event_constants.h" |
| 19 #include "url/gurl.h" | 19 #include "url/gurl.h" |
| 20 #include "url/url_util.h" | 20 #include "url/url_util.h" |
| 21 | 21 |
| 22 using mojo::view_manager::Node; | 22 using mojo::view_manager::Node; |
| 23 using mojo::view_manager::NodeObserver; | 23 using mojo::view_manager::NodeObserver; |
| 24 using mojo::view_manager::View; | 24 using mojo::view_manager::View; |
| 25 using mojo::view_manager::ViewManager; | 25 using mojo::view_manager::ViewManager; |
| 26 using mojo::view_manager::ViewManagerDelegate; | 26 using mojo::view_manager::ViewManagerDelegate; |
| 27 using mojo::view_manager::ViewObserver; | 27 using mojo::view_manager::ViewObserver; |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 }; | 146 }; |
| 147 | 147 |
| 148 } // namespace examples | 148 } // namespace examples |
| 149 | 149 |
| 150 // static | 150 // static |
| 151 Application* Application::Create() { | 151 Application* Application::Create() { |
| 152 return new examples::EmbeddedApp; | 152 return new examples::EmbeddedApp; |
| 153 } | 153 } |
| 154 | 154 |
| 155 } // namespace mojo | 155 } // namespace mojo |
| OLD | NEW |