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

Unified Diff: net/tools/hresolv/hresolv.cc

Issue 5004002: base: Move StringSplitAlongWhitespace to string_split.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unittests Created 10 years, 1 month 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/browser/themes/browser_theme_provider.cc ('k') | webkit/glue/dom_operations.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/hresolv/hresolv.cc
diff --git a/net/tools/hresolv/hresolv.cc b/net/tools/hresolv/hresolv.cc
index da5c4b00f2e9f747d4061f55780d886bb242f14f..314ff32e0b9ab3ea8842b5904b0ae33a8b6f7497 100644
--- a/net/tools/hresolv/hresolv.cc
+++ b/net/tools/hresolv/hresolv.cc
@@ -390,7 +390,7 @@ bool ReadHostsAndTimesFromFile(const FilePath& path,
it != line_end;
++it) {
std::vector<std::string> tokens;
- SplitStringAlongWhitespace(*it, &tokens);
+ base::SplitStringAlongWhitespace(*it, &tokens);
switch (tokens.size()) {
case 0:
// Unexpected, but keep going.
« no previous file with comments | « chrome/browser/themes/browser_theme_provider.cc ('k') | webkit/glue/dom_operations.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698