| Index: chrome/browser/safe_browsing/safe_browsing_service.cc
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_service.cc b/chrome/browser/safe_browsing/safe_browsing_service.cc
|
| index 88750c18b8d72bc6a0a6dada878eaf7391e3b161..e5c8fd53a6b0128b659f8a5332285acfe30f363f 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_service.cc
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_service.cc
|
| @@ -219,7 +219,7 @@ void SafeBrowsingService::Initialize() {
|
|
|
| #if defined(FULL_SAFE_BROWSING)
|
| #if !defined(OS_ANDROID)
|
| - if (!CommandLine::ForCurrentProcess()->HasSwitch(
|
| + if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kDisableClientSidePhishingDetection)) {
|
| csd_service_.reset(safe_browsing::ClientSideDetectionService::Create(
|
| url_request_context_getter_.get()));
|
| @@ -443,7 +443,7 @@ SafeBrowsingProtocolConfig SafeBrowsingService::GetProtocolConfig() const {
|
| #endif
|
|
|
| #endif // defined(OS_WIN)
|
| - CommandLine* cmdline = CommandLine::ForCurrentProcess();
|
| + base::CommandLine* cmdline = base::CommandLine::ForCurrentProcess();
|
| config.disable_auto_update =
|
| cmdline->HasSwitch(switches::kSbDisableAutoUpdate) ||
|
| cmdline->HasSwitch(switches::kDisableBackgroundNetworking);
|
|
|