OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CONTENT_COMMON_MOJO_STATIC_APPLICATION_LOADER_H_ | 5 #ifndef CONTENT_COMMON_MOJO_STATIC_APPLICATION_LOADER_H_ |
6 #define CONTENT_COMMON_MOJO_STATIC_APPLICATION_LOADER_H_ | 6 #define CONTENT_COMMON_MOJO_STATIC_APPLICATION_LOADER_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "mojo/shell/loader.h" | 13 #include "services/shell/loader.h" |
14 | 14 |
15 namespace base { | 15 namespace base { |
16 class SimpleThread; | 16 class SimpleThread; |
17 } | 17 } |
18 | 18 |
19 namespace mojo { | 19 namespace mojo { |
20 class ShellClient; | 20 class ShellClient; |
21 } | 21 } |
22 | 22 |
23 namespace content { | 23 namespace content { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 std::unique_ptr<base::SimpleThread> thread_; | 58 std::unique_ptr<base::SimpleThread> thread_; |
59 | 59 |
60 base::WeakPtrFactory<StaticLoader> weak_factory_; | 60 base::WeakPtrFactory<StaticLoader> weak_factory_; |
61 | 61 |
62 DISALLOW_COPY_AND_ASSIGN(StaticLoader); | 62 DISALLOW_COPY_AND_ASSIGN(StaticLoader); |
63 }; | 63 }; |
64 | 64 |
65 } // namespace content | 65 } // namespace content |
66 | 66 |
67 #endif // CONTENT_COMMON_MOJO_STATIC_APPLICATION_LOADER_H_ | 67 #endif // CONTENT_COMMON_MOJO_STATIC_APPLICATION_LOADER_H_ |
OLD | NEW |