| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_PUBLIC_COMMON_CONTENT_CLIENT_H_ | 5 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_CLIENT_H_ |
| 6 #define CONTENT_PUBLIC_COMMON_CONTENT_CLIENT_H_ | 6 #define CONTENT_PUBLIC_COMMON_CONTENT_CLIENT_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 } | 31 } |
| 32 | 32 |
| 33 namespace gpu { | 33 namespace gpu { |
| 34 struct GPUInfo; | 34 struct GPUInfo; |
| 35 } | 35 } |
| 36 | 36 |
| 37 namespace media { | 37 namespace media { |
| 38 class MediaClientAndroid; | 38 class MediaClientAndroid; |
| 39 } | 39 } |
| 40 | 40 |
| 41 namespace sandbox { | |
| 42 class TargetPolicy; | |
| 43 } | |
| 44 | |
| 45 namespace content { | 41 namespace content { |
| 46 | 42 |
| 47 class ContentBrowserClient; | 43 class ContentBrowserClient; |
| 48 class ContentClient; | 44 class ContentClient; |
| 49 class ContentGpuClient; | 45 class ContentGpuClient; |
| 50 class ContentRendererClient; | 46 class ContentRendererClient; |
| 51 class ContentUtilityClient; | 47 class ContentUtilityClient; |
| 52 class OriginTrialPolicy; | 48 class OriginTrialPolicy; |
| 53 struct CdmInfo; | 49 struct CdmInfo; |
| 54 struct PepperPluginInfo; | 50 struct PepperPluginInfo; |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 ContentGpuClient* gpu_; | 189 ContentGpuClient* gpu_; |
| 194 // The embedder API for participating in renderer logic. | 190 // The embedder API for participating in renderer logic. |
| 195 ContentRendererClient* renderer_; | 191 ContentRendererClient* renderer_; |
| 196 // The embedder API for participating in utility logic. | 192 // The embedder API for participating in utility logic. |
| 197 ContentUtilityClient* utility_; | 193 ContentUtilityClient* utility_; |
| 198 }; | 194 }; |
| 199 | 195 |
| 200 } // namespace content | 196 } // namespace content |
| 201 | 197 |
| 202 #endif // CONTENT_PUBLIC_COMMON_CONTENT_CLIENT_H_ | 198 #endif // CONTENT_PUBLIC_COMMON_CONTENT_CLIENT_H_ |
| OLD | NEW |