OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef MOJO_SHELL_BACKGROUND_BACKGROUND_SHELL_H_ | 5 #ifndef SERVICES_SHELL_BACKGROUND_BACKGROUND_SHELL_H_ |
6 #define MOJO_SHELL_BACKGROUND_BACKGROUND_SHELL_H_ | 6 #define SERVICES_SHELL_BACKGROUND_BACKGROUND_SHELL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "mojo/public/cpp/bindings/interface_request.h" | 12 #include "mojo/public/cpp/bindings/interface_request.h" |
13 #include "mojo/services/catalog/store.h" | 13 #include "mojo/services/catalog/store.h" |
14 #include "mojo/shell/public/interfaces/shell_client.mojom.h" | 14 #include "services/shell/public/interfaces/shell_client.mojom.h" |
15 | 15 |
16 namespace catalog { | 16 namespace catalog { |
17 class Store; | 17 class Store; |
18 } | 18 } |
19 | 19 |
20 namespace mojo { | 20 namespace mojo { |
21 namespace shell { | 21 namespace shell { |
22 | 22 |
23 class NativeRunnerDelegate; | 23 class NativeRunnerDelegate; |
24 class Shell; | 24 class Shell; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 class MojoThread; | 59 class MojoThread; |
60 | 60 |
61 scoped_ptr<MojoThread> thread_; | 61 scoped_ptr<MojoThread> thread_; |
62 | 62 |
63 DISALLOW_COPY_AND_ASSIGN(BackgroundShell); | 63 DISALLOW_COPY_AND_ASSIGN(BackgroundShell); |
64 }; | 64 }; |
65 | 65 |
66 } // namespace shell | 66 } // namespace shell |
67 } // namespace mojo | 67 } // namespace mojo |
68 | 68 |
69 #endif // MOJO_SHELL_BACKGROUND_BACKGROUND_SHELL_H_ | 69 #endif // SERVICES_SHELL_BACKGROUND_BACKGROUND_SHELL_H_ |
OLD | NEW |