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

Unified Diff: chromeos/system/name_value_pairs_parser.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
Index: chromeos/system/name_value_pairs_parser.cc
diff --git a/chromeos/system/name_value_pairs_parser.cc b/chromeos/system/name_value_pairs_parser.cc
index b5e11f4c51a6ac925ae75bb1dc1a055092d67e9f..efa57797735f6cb43cce3c0d620ef1beeb23984d 100644
--- a/chromeos/system/name_value_pairs_parser.cc
+++ b/chromeos/system/name_value_pairs_parser.cc
@@ -113,7 +113,7 @@ bool NameValuePairsParser::GetSingleValueFromTool(int argc,
if (!GetToolOutput(argc, argv, output_string))
return false;
- TrimWhitespaceASCII(output_string, TRIM_ALL, &output_string);
+ base::TrimWhitespaceASCII(output_string, base::TRIM_ALL, &output_string);
AddNameValuePair(key, output_string);
return true;
}
« no previous file with comments | « chromeos/dbus/power_policy_controller.cc ('k') | components/autofill/content/browser/wallet/required_action.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698