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

Unified Diff: chrome/browser/chromeos/login/authenticator.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
Index: chrome/browser/chromeos/login/authenticator.cc
diff --git a/chrome/browser/chromeos/login/authenticator.cc b/chrome/browser/chromeos/login/authenticator.cc
index 1ca3378aaa49aebefbf45cbd81a0d2410367d10b..5287dea2e81a838b13bbd54d157d901e4417b058 100644
--- a/chrome/browser/chromeos/login/authenticator.cc
+++ b/chrome/browser/chromeos/login/authenticator.cc
@@ -24,7 +24,7 @@ Authenticator::~Authenticator() {}
std::string Authenticator::Canonicalize(const std::string& email_address) {
std::vector<std::string> parts;
char at = '@';
- SplitString(email_address, at, &parts);
+ base::SplitString(email_address, at, &parts);
DCHECK_EQ(parts.size(), 2U) << "email_address should have only one @";
RemoveChars(parts[0], ".", &parts[0]);
if (parts[0].find('+') != std::string::npos)
« no previous file with comments | « chrome/browser/chromeos/input_method/input_method_util.cc ('k') | chrome/browser/chromeos/options/language_config_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698