OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/string16.h" | 13 #include "base/string16.h" |
| 14 #include "base/string_piece.h" |
14 #include "build/build_config.h" | 15 #include "build/build_config.h" |
15 #include "content/common/content_export.h" | 16 #include "content/common/content_export.h" |
16 | 17 |
17 class CommandLine; | 18 class CommandLine; |
18 class GURL; | 19 class GURL; |
19 | 20 |
20 namespace IPC { | 21 namespace IPC { |
21 class Message; | 22 class Message; |
22 } | 23 } |
23 | 24 |
24 namespace base { | |
25 class StringPiece; | |
26 } | |
27 | |
28 namespace sandbox { | 25 namespace sandbox { |
29 class TargetPolicy; | 26 class TargetPolicy; |
30 } | 27 } |
31 | 28 |
32 namespace webkit { | 29 namespace webkit { |
33 namespace npapi { | 30 namespace npapi { |
34 class PluginList; | 31 class PluginList; |
35 } | 32 } |
36 } | 33 } |
37 | 34 |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 ContentPluginClient* plugin_; | 131 ContentPluginClient* plugin_; |
135 // The embedder API for participating in renderer logic. | 132 // The embedder API for participating in renderer logic. |
136 ContentRendererClient* renderer_; | 133 ContentRendererClient* renderer_; |
137 // The embedder API for participating in utility logic. | 134 // The embedder API for participating in utility logic. |
138 ContentUtilityClient* utility_; | 135 ContentUtilityClient* utility_; |
139 }; | 136 }; |
140 | 137 |
141 } // namespace content | 138 } // namespace content |
142 | 139 |
143 #endif // CONTENT_PUBLIC_COMMON_CONTENT_CLIENT_H_ | 140 #endif // CONTENT_PUBLIC_COMMON_CONTENT_CLIENT_H_ |
OLD | NEW |