Index: content/shell/common/webkit_test_helpers.cc |
diff --git a/content/shell/common/webkit_test_helpers.cc b/content/shell/common/webkit_test_helpers.cc |
index fbed2cd8ba50c621e27b75a092b763439b6cab07..8d254aaa51a260462c3ba5c7e6016dae304d06c3 100644 |
--- a/content/shell/common/webkit_test_helpers.cc |
+++ b/content/shell/common/webkit_test_helpers.cc |
@@ -55,7 +55,8 @@ void ExportLayoutTestSpecificPreferences(const TestPreferences& from, |
// of the defaults are controlled via command line flags which are |
// automatically set for layout tests. |
void ApplyLayoutTestDefaultPreferences(WebPreferences* prefs) { |
- const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
+ const base::CommandLine& command_line = |
+ *base::CommandLine::ForCurrentProcess(); |
prefs->allow_universal_access_from_file_urls = true; |
prefs->dom_paste_enabled = true; |
prefs->javascript_can_access_clipboard = true; |
@@ -111,7 +112,8 @@ base::FilePath GetWebKitRootDirFilePath() { |
std::vector<std::string> GetSideloadFontFiles() { |
std::vector<std::string> files; |
- const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
+ const base::CommandLine& command_line = |
+ *base::CommandLine::ForCurrentProcess(); |
if (command_line.HasSwitch(switches::kRegisterFontFiles)) { |
base::SplitString( |
command_line.GetSwitchValueASCII(switches::kRegisterFontFiles), |