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

Unified Diff: chrome/tools/convert_dict/hunspell_reader.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 | « chrome/test/chromedriver/net/adb_client_socket.cc ('k') | chromeos/dbus/power_policy_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/convert_dict/hunspell_reader.cc
diff --git a/chrome/tools/convert_dict/hunspell_reader.cc b/chrome/tools/convert_dict/hunspell_reader.cc
index f6ddc794132881a411e7e16612713ae9c9c4c719..6555fb7be3bbd2d18cd6418670e020b381a16d9e 100644
--- a/chrome/tools/convert_dict/hunspell_reader.cc
+++ b/chrome/tools/convert_dict/hunspell_reader.cc
@@ -23,7 +23,7 @@ void TrimLine(std::string* line) {
// Treat this text as an ASCII text and trim whitespace characters as
// hunspell does. The returned text is to be converted into UTF-8 text with
// the encoding defined in an affix file.
- TrimWhitespace(*line, TRIM_ALL, line);
+ base::TrimWhitespace(*line, base::TRIM_ALL, line);
}
std::string ReadLine(FILE* file) {
« no previous file with comments | « chrome/test/chromedriver/net/adb_client_socket.cc ('k') | chromeos/dbus/power_policy_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698