Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1747)

Unified Diff: chrome/browser/extensions/external_provider_impl.cc

Issue 819133004: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/external_provider_impl.cc
diff --git a/chrome/browser/extensions/external_provider_impl.cc b/chrome/browser/extensions/external_provider_impl.cc
index 2f3d8294f99c53e028397943a05db39608433cb7..100dacdcc3c4b5e9e7f10fe2811e639d3ad62a41 100644
--- a/chrome/browser/extensions/external_provider_impl.cc
+++ b/chrome/browser/extensions/external_provider_impl.cc
@@ -448,8 +448,8 @@ void ExternalProviderImpl::CreateExternalProviders(
// In tests don't install extensions from default external sources.
// It would only slowdown tests and make them flaky.
- if (CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kDisableDefaultApps))
+ if (base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kDisableDefaultApps))
return;
// On Mac OS, items in /Library/... should be written by the superuser.

Powered by Google App Engine
This is Rietveld 408576698