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

Unified Diff: chrome/browser/chromeos/login/login_utils.cc

Issue 2729020: Show Captcha dialog. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: remove debug line Created 10 years, 6 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/browser/chromeos/login/login_utils.h ('k') | chrome/browser/chromeos/login/mock_authenticator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/login_utils.cc
diff --git a/chrome/browser/chromeos/login/login_utils.cc b/chrome/browser/chromeos/login/login_utils.cc
index 906ea6661605ddfa1835d86240256033acdb0ef3..1e4cf19373e3914569c7b64419b5622c3718c006 100644
--- a/chrome/browser/chromeos/login/login_utils.cc
+++ b/chrome/browser/chromeos/login/login_utils.cc
@@ -50,19 +50,6 @@ const char kAuthPrefix[] = "Auth=";
// Suffix for Auth token received from ClientLogin request.
const char kAuthSuffix[] = "\n";
-// Find Auth token in given response from ClientLogin request.
-// Returns the token if found, empty string otherwise.
-std::string get_auth_token(const std::string& credentials) {
- size_t auth_start = credentials.find(kAuthPrefix);
- if (auth_start == std::string::npos)
- return std::string();
- auth_start += arraysize(kAuthPrefix) - 1;
- size_t auth_end = credentials.find(kAuthSuffix, auth_start);
- if (auth_end == std::string::npos)
- return std::string();
- return credentials.substr(auth_start, auth_end - auth_start);
-}
-
} // namespace
class LoginUtilsImpl : public LoginUtils,
@@ -218,7 +205,7 @@ void LoginUtilsImpl::CompleteLogin(const std::string& username,
// delete itself.
CookieFetcher* cf = new CookieFetcher(profile);
cf->AttemptFetch(credentials);
- auth_token_ = get_auth_token(credentials);
+ auth_token_ = ExtractClientLoginParam(credentials, kAuthPrefix, kAuthSuffix);
}
void LoginUtilsImpl::CompleteOffTheRecordLogin() {
@@ -295,4 +282,18 @@ void LoginUtils::DoBrowserLaunch(Profile* profile) {
&return_code);
}
+std::string LoginUtils::ExtractClientLoginParam(
+ const std::string& credentials,
+ const std::string& param_prefix,
+ const std::string& param_suffix) {
+ size_t start = credentials.find(param_prefix);
+ if (start == std::string::npos)
+ return std::string();
+ start += param_prefix.size();
+ size_t end = credentials.find(param_suffix, start);
+ if (end == std::string::npos)
+ return std::string();
+ return credentials.substr(start, end - start);
+}
+
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/login/login_utils.h ('k') | chrome/browser/chromeos/login/mock_authenticator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698