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; |