| 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/compiler_specific.h" | 5 #include "base/compiler_specific.h" |
| 6 #include "base/message_loop/message_loop.h" | 6 #include "base/message_loop/message_loop.h" |
| 7 #include "base/strings/string_tokenizer.h" | 7 #include "base/strings/string_tokenizer.h" |
| 8 #include "mojo/public/cpp/application/application.h" | 8 #include "mojo/public/cpp/application/application.h" |
| 9 #include "mojo/services/public/cpp/view_manager/view_manager_types.h" | 9 #include "mojo/services/public/cpp/view_manager/types.h" |
| 10 #include "mojo/services/public/interfaces/launcher/launcher.mojom.h" | 10 #include "mojo/services/public/interfaces/launcher/launcher.mojom.h" |
| 11 #include "mojo/services/public/interfaces/network/network_service.mojom.h" | 11 #include "mojo/services/public/interfaces/network/network_service.mojom.h" |
| 12 #include "mojo/services/public/interfaces/network/url_loader.mojom.h" | 12 #include "mojo/services/public/interfaces/network/url_loader.mojom.h" |
| 13 | 13 |
| 14 namespace mojo { | 14 namespace mojo { |
| 15 namespace launcher { | 15 namespace launcher { |
| 16 | 16 |
| 17 class LauncherApp; | 17 class LauncherApp; |
| 18 | 18 |
| 19 class LauncherConnection : public InterfaceImpl<Launcher> { | 19 class LauncherConnection : public InterfaceImpl<Launcher> { |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 } | 152 } |
| 153 | 153 |
| 154 } // namespace launcher | 154 } // namespace launcher |
| 155 | 155 |
| 156 // static | 156 // static |
| 157 Application* Application::Create() { | 157 Application* Application::Create() { |
| 158 return new launcher::LauncherApp; | 158 return new launcher::LauncherApp; |
| 159 } | 159 } |
| 160 | 160 |
| 161 } // namespace mojo | 161 } // namespace mojo |
| OLD | NEW |