Index: chromecast/browser/cast_browser_main_parts.cc |
diff --git a/chromecast/browser/cast_browser_main_parts.cc b/chromecast/browser/cast_browser_main_parts.cc |
index cb07200364673f26af1df93470b62a1d5550551f..c4547ce57c2de9b7d332d14a6659d951f5ca9703 100644 |
--- a/chromecast/browser/cast_browser_main_parts.cc |
+++ b/chromecast/browser/cast_browser_main_parts.cc |
@@ -64,7 +64,7 @@ DefaultCommandLineSwitch g_default_switches[] = { |
{ NULL, NULL }, // Termination |
}; |
-void AddDefaultCommandLineSwitches(CommandLine* command_line) { |
+void AddDefaultCommandLineSwitches(base::CommandLine* command_line) { |
int i = 0; |
while (g_default_switches[i].switch_name != NULL) { |
command_line->AppendSwitchASCII( |
@@ -83,7 +83,7 @@ CastBrowserMainParts::CastBrowserMainParts( |
cast_browser_process_(new CastBrowserProcess()), |
parameters_(parameters), |
url_request_context_factory_(url_request_context_factory) { |
- CommandLine* command_line = CommandLine::ForCurrentProcess(); |
+ base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
AddDefaultCommandLineSwitches(command_line); |
} |