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

Unified Diff: chrome_frame/metrics_service.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 | « chrome_frame/chrome_frame_npapi.cc ('k') | net/base/host_mapping_rules.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/metrics_service.cc
diff --git a/chrome_frame/metrics_service.cc b/chrome_frame/metrics_service.cc
index b78f71aefa32991d2d339370d6a286cd64542285..9d135a7d01b8c5b693d1d368e2a90470633561e3 100644
--- a/chrome_frame/metrics_service.cc
+++ b/chrome_frame/metrics_service.cc
@@ -168,7 +168,7 @@ class ChromeFrameUploadRequestContext : public URLRequestContext {
std::string csv_auth_schemes = "basic,digest,ntlm,negotiate";
std::vector<std::string> supported_schemes;
- SplitString(csv_auth_schemes, ',', &supported_schemes);
+ base::SplitString(csv_auth_schemes, ',', &supported_schemes);
http_auth_handler_factory_ = net::HttpAuthHandlerRegistryFactory::Create(
supported_schemes, url_security_manager_.get(), host_resolver_, false,
« no previous file with comments | « chrome_frame/chrome_frame_npapi.cc ('k') | net/base/host_mapping_rules.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698