Index: extensions/shell/browser/shell_browser_main_parts.cc |
diff --git a/extensions/shell/browser/shell_browser_main_parts.cc b/extensions/shell/browser/shell_browser_main_parts.cc |
index 8c02ccf8eec449aa7c2c282f64007f04e5ecf3b2..453474b51bd7a3700bfa4bb92b0358318bf4973d 100644 |
--- a/extensions/shell/browser/shell_browser_main_parts.cc |
+++ b/extensions/shell/browser/shell_browser_main_parts.cc |
@@ -109,7 +109,7 @@ void ShellBrowserMainParts::PostMainMessageLoopStart() { |
chromeos::NetworkHandler::Initialize(); |
network_controller_.reset(new ShellNetworkController( |
- CommandLine::ForCurrentProcess()->GetSwitchValueNative( |
+ base::CommandLine::ForCurrentProcess()->GetSwitchValueNative( |
switches::kAppShellPreferredNetwork))); |
#else |
// Non-Chrome OS platforms are for developer convenience, so use a test IME. |
@@ -185,7 +185,7 @@ void ShellBrowserMainParts::PreMainMessageLoopRun() { |
browser_context_.get()); |
// Initialize OAuth2 support from command line. |
- CommandLine* cmd = CommandLine::ForCurrentProcess(); |
+ base::CommandLine* cmd = base::CommandLine::ForCurrentProcess(); |
oauth2_token_service_.reset(new ShellOAuth2TokenService( |
browser_context_.get(), |
cmd->GetSwitchValueASCII(switches::kAppShellUser), |