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

Unified Diff: net/base/net_util.cc

Issue 3750001: base: Move SplitString functions into the base namespace and update the callers. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: brett review, reverted changes in o3d due to it's using an old base revision Created 10 years, 2 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 | « net/base/mime_util.cc ('k') | net/ftp/ftp_directory_listing_parser_ls.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/net_util.cc
diff --git a/net/base/net_util.cc b/net/base/net_util.cc
index ddc1da7a0bbecdbd009bb87b8809fbd2bb2534a8..9afae4c68e9627dc6c44715ae96432023b5f0ab5 100644
--- a/net/base/net_util.cc
+++ b/net/base/net_util.cc
@@ -1904,7 +1904,7 @@ bool ParseCIDRBlock(const std::string& cidr_literal,
// <IPv6-literal> "/" <number of bits>
std::vector<std::string> parts;
- SplitString(cidr_literal, '/', &parts);
+ base::SplitString(cidr_literal, '/', &parts);
if (parts.size() != 2)
return false;
« no previous file with comments | « net/base/mime_util.cc ('k') | net/ftp/ftp_directory_listing_parser_ls.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698