Index: content/public/browser/content_browser_client.h |
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h |
index 5e412a732f555571cddf9d718e08d6fa16c2db15..8df5c71cea91d3f98006df1e2a66d2b42b536e4b 100644 |
--- a/content/public/browser/content_browser_client.h |
+++ b/content/public/browser/content_browser_client.h |
@@ -34,19 +34,19 @@ |
#include "content/public/browser/file_descriptor_info.h" |
#endif |
-class CommandLine; |
class GURL; |
struct WebPreferences; |
-namespace blink { |
-struct WebWindowFeatures; |
-} |
- |
namespace base { |
+class CommandLine; |
class DictionaryValue; |
class FilePath; |
} |
+namespace blink { |
+struct WebWindowFeatures; |
+} |
+ |
namespace gfx { |
class ImageSkia; |
} |
@@ -282,7 +282,7 @@ class CONTENT_EXPORT ContentBrowserClient { |
// Allows the embedder to pass extra command line flags. |
// switches::kProcessType will already be set at this point. |
- virtual void AppendExtraCommandLineSwitches(CommandLine* command_line, |
+ virtual void AppendExtraCommandLineSwitches(base::CommandLine* command_line, |
int child_process_id) {} |
// Returns the locale used by the application. |
@@ -605,7 +605,7 @@ class CONTENT_EXPORT ContentBrowserClient { |
// Populates |mappings| with all files that need to be mapped before launching |
// a child process. |
virtual void GetAdditionalMappedFilesForChildProcess( |
- const CommandLine& command_line, |
+ const base::CommandLine& command_line, |
int child_process_id, |
std::vector<FileDescriptorInfo>* mappings) {} |
#endif |