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

Unified Diff: extensions/common/feature_switch.cc

Issue 183853011: Move TrimWhitespace to the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months 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 | « content/renderer/render_frame_impl.cc ('k') | google_apis/gaia/oauth2_mint_token_flow.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 1108346b627c36b116dba2ff2369021435ffc1bd..55b54ce018235813897a8ea2f8b1b337dd20f6e8 100644
--- a/extensions/common/feature_switch.cc
+++ b/extensions/common/feature_switch.cc
@@ -110,7 +110,7 @@ bool FeatureSwitch::IsEnabled() const {
std::string temp = command_line_->GetSwitchValueASCII(switch_name_);
std::string switch_value;
- TrimWhitespaceASCII(temp, TRIM_ALL, &switch_value);
+ base::TrimWhitespaceASCII(temp, base::TRIM_ALL, &switch_value);
if (switch_value == "1")
return true;
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | google_apis/gaia/oauth2_mint_token_flow.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698