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

Unified Diff: extensions/common/feature_switch.cc

Issue 819193002: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « extensions/common/extension.cc ('k') | extensions/common/features/simple_feature.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/feature_switch.cc
diff --git a/extensions/common/feature_switch.cc b/extensions/common/feature_switch.cc
index c81a2d29585ae439b212a0fb7cd1ed5da381a45e..1d51b7701bf0ad4d63e5cc0ee260f497943cbab7 100644
--- a/extensions/common/feature_switch.cc
+++ b/extensions/common/feature_switch.cc
@@ -110,16 +110,16 @@ FeatureSwitch::ScopedOverride::~ScopedOverride() {
FeatureSwitch::FeatureSwitch(const char* switch_name,
DefaultValue default_value) {
- Init(CommandLine::ForCurrentProcess(), switch_name, default_value);
+ Init(base::CommandLine::ForCurrentProcess(), switch_name, default_value);
}
-FeatureSwitch::FeatureSwitch(const CommandLine* command_line,
+FeatureSwitch::FeatureSwitch(const base::CommandLine* command_line,
const char* switch_name,
DefaultValue default_value) {
Init(command_line, switch_name, default_value);
}
-void FeatureSwitch::Init(const CommandLine* command_line,
+void FeatureSwitch::Init(const base::CommandLine* command_line,
const char* switch_name,
DefaultValue default_value) {
command_line_ = command_line;
« no previous file with comments | « extensions/common/extension.cc ('k') | extensions/common/features/simple_feature.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698