Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.cc |
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.cc |
index 44ae2520a7f373abcc6363440faf7183bcf8d59e..e6dea8cc8bea756dd4808753b4237bdd461a36a5 100644 |
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.cc |
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.cc |
@@ -48,7 +48,8 @@ const char* GetString(Client client) { |
// static |
bool DataReductionProxyAuthRequestHandler::IsKeySetOnCommandLine() { |
- const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
+ const base::CommandLine& command_line = |
+ *base::CommandLine::ForCurrentProcess(); |
return command_line.HasSwitch( |
data_reduction_proxy::switches::kDataReductionProxyKey); |
} |
@@ -214,7 +215,8 @@ void DataReductionProxyAuthRequestHandler::InitAuthentication( |
} |
std::string DataReductionProxyAuthRequestHandler::GetDefaultKey() const { |
- const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
+ const base::CommandLine& command_line = |
+ *base::CommandLine::ForCurrentProcess(); |
std::string key = |
command_line.GetSwitchValueASCII(switches::kDataReductionProxyKey); |
// Android and iOS get the default key from a preprocessor constant. All other |