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 COMPONENTS_RESOURCE_PROVIDER_PUBLIC_CPP_RESOURCE_LOADER_H_ | 5 #ifndef COMPONENTS_RESOURCE_PROVIDER_PUBLIC_CPP_RESOURCE_LOADER_H_ |
6 #define COMPONENTS_RESOURCE_PROVIDER_PUBLIC_CPP_RESOURCE_LOADER_H_ | 6 #define COMPONENTS_RESOURCE_PROVIDER_PUBLIC_CPP_RESOURCE_LOADER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "components/resource_provider/public/interfaces/resource_provider.mojom
.h" | 15 #include "components/resource_provider/public/interfaces/resource_provider.mojom
.h" |
| 16 #include "mojo/application/public/interfaces/service_provider.mojom.h" |
16 #include "mojo/platform_handle/platform_handle.h" | 17 #include "mojo/platform_handle/platform_handle.h" |
17 #include "third_party/mojo/src/mojo/public/cpp/bindings/array.h" | 18 #include "third_party/mojo/src/mojo/public/cpp/bindings/array.h" |
18 #include "third_party/mojo/src/mojo/public/cpp/system/handle.h" | 19 #include "third_party/mojo/src/mojo/public/cpp/system/handle.h" |
19 #include "third_party/mojo/src/mojo/public/interfaces/application/service_provid
er.mojom.h" | |
20 | 20 |
21 namespace base { | 21 namespace base { |
22 class File; | 22 class File; |
23 } | 23 } |
24 | 24 |
25 namespace mojo { | 25 namespace mojo { |
26 class Shell; | 26 class Shell; |
27 } | 27 } |
28 | 28 |
29 namespace resource_provider { | 29 namespace resource_provider { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 | 63 |
64 bool loaded_; | 64 bool loaded_; |
65 bool did_block_; | 65 bool did_block_; |
66 | 66 |
67 DISALLOW_COPY_AND_ASSIGN(ResourceLoader); | 67 DISALLOW_COPY_AND_ASSIGN(ResourceLoader); |
68 }; | 68 }; |
69 | 69 |
70 } // namespace resource_provider | 70 } // namespace resource_provider |
71 | 71 |
72 #endif // COMPONENTS_RESOURCE_PROVIDER_PUBLIC_CPP_RESOURCE_LOADER_H_ | 72 #endif // COMPONENTS_RESOURCE_PROVIDER_PUBLIC_CPP_RESOURCE_LOADER_H_ |
OLD | NEW |