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

Unified Diff: chrome/browser/apps/ephemeral_app_launcher.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/apps/ephemeral_app_launcher.cc
diff --git a/chrome/browser/apps/ephemeral_app_launcher.cc b/chrome/browser/apps/ephemeral_app_launcher.cc
index cdea28fc921c39d6fd30f869d7cf6820c5a6545a..0a17700c24dfca7ae1bb761b45c4477c69bc8138 100644
--- a/chrome/browser/apps/ephemeral_app_launcher.cc
+++ b/chrome/browser/apps/ephemeral_app_launcher.cc
@@ -98,8 +98,9 @@ bool EphemeralAppLauncher::IsFeatureEnabled() {
// static
bool EphemeralAppLauncher::IsFeatureEnabledInWebstore() {
- return IsFeatureEnabled() && CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kEnableEphemeralAppsInWebstore);
+ return IsFeatureEnabled() &&
+ base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kEnableEphemeralAppsInWebstore);
}
// static
« no previous file with comments | « chrome/browser/apps/app_url_redirector_browsertest.cc ('k') | chrome/browser/apps/ephemeral_app_launcher_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698