/external/chromium/chrome/common/net/gaia/ |
google_service_auth_error.h | 9 // captcha challenges. 15 // transparent wrapper around 'State' due to additional Captcha data 54 // The user needs to satisfy a CAPTCHA challenge to unlock their account. 57 // captcha() will provide details about the associated challenge. 82 struct Captcha { 83 Captcha(const std::string& t, const GURL& img, const GURL& unlock); 84 std::string token; // Globally identifies the specific CAPTCHA challenge. 85 GURL image_url; // The CAPTCHA image to show the user. 86 GURL unlock_url; // Pretty unlock page containing above captcha. 99 // Construct a CAPTCHA_REQUIRED error with CAPTCHA challenge data [all...] |
google_service_auth_error.cc | 13 GoogleServiceAuthError::Captcha::Captcha( 57 const GoogleServiceAuthError::Captcha& GoogleServiceAuthError::captcha() const { function in class:GoogleServiceAuthError 89 value->Set("captcha", captcha_value);
|
google_service_auth_error_unittest.cc | 64 EXPECT_TRUE(value->GetDictionary("captcha", &captcha_value));
|
/external/chromium/chrome/browser/printing/cloud_print/ |
cloud_print_setup_message_handler.cc | 30 std::string username, password, captcha, access_code; local 45 !result->GetString("captcha", &captcha) || 53 flow_->OnUserSubmittedAuth(username, password, captcha, access_code);
|
/external/chromium/chrome/browser/chromeos/login/ |
captcha_view.h | 26 // A dialog box that shows a CAPTCHA image and allows user to input response. 35 // Called when CAPTCHA answer has been entered. 36 virtual void OnCaptchaEntered(const std::string& captcha) = 0; 42 // |captcha_url| represents CAPTCHA image URL. 73 // Instructs to download and display another captcha image.
|
login_performer.h | 33 // (2) User password has changed and/or CAPTCHA input is required. 40 // (2) Ask for new user password and/or CAPTCHA. 45 // CAPTCHA dialog, password input. 48 // In case of failure password/captcha 118 void set_captcha(const std::string& captcha) { captcha_ = captcha; } 159 // String entered by the user as an answer to a CAPTCHA challenge. 162 // Token representing the specific CAPTCHA challenge.
|
screen_locker.h | 85 virtual void OnCaptchaEntered(const std::string& captcha); 99 // Present user a CAPTCHA challenge with image from |captcha_url|, 182 // View used to present CAPTCHA challenge input. 187 // When CAPTCHA input dialog is presented it's swapped to CaptchaView 188 // instance, then back after CAPTCHA input is done. 196 // Postponed error message to be shown after CAPTCHA input is done.
|
enterprise_enrollment_screen.h | 29 const std::string& captcha, 57 const std::string& captcha,
|
enterprise_enrollment_view.h | 55 const std::string& captcha,
|
enterprise_enrollment_view.cc | 126 args.SetString("captchaUrl", error.captcha().image_url.spec()); 148 const std::string& captcha, 150 controller_->Authenticate(user, password, captcha, access_code);
|
/external/chromium/chrome/browser/remoting/ |
setup_flow_login_step.cc | 48 std::string username, password, captcha, access_code; local 53 !result->GetString("captcha", &captcha) || 59 OnUserSubmittedAuth(username, password, captcha, access_code); 70 const std::string& captcha, 87 "", captcha, 150 args.SetString("captchaUrl", error.captcha().image_url.spec());
|
setup_flow_login_step.h | 40 const std::string& captcha,
|
/external/chromium/chrome/browser/sync/resources/ |
gaia_login.js | 5 // Variable to track if a captcha challenge was issued. If this gets set to 8 // rendered in the captcha state, which is basically identical except we 91 // The captcha takes up lots of space, so make room. 97 // It's showtime for the captcha now. 98 setElementDisplay("captcha-div", "block"); 101 document.getElementById('captcha-value').disabled = false; 102 document.getElementById('captcha-wrapper').style.backgroundImage = 171 document.getElementById('captcha-value').disabled = true; 179 "captcha" : f.captchaValue.value, 197 return; // No blurb in captcha challenge mode [all...] |
gaia_login.css | 74 #captcha-wrapper { 82 #captcha-image { 100 #cancel-space-no-captcha { 164 #captcha-div {
|
gaia_login.html | 114 <div id="captcha-div"> 129 <span id="captcha-wrapper"> 130 <div id="captcha-image"></div> 136 <input id="captcha-value" type="text" 201 <div id="cancel-space-no-captcha" colspan="2">
|
gaia_login_test.html | 49 captchaUrl: "https://www.google.com/accounts/Captcha" 117 <input type="radio" name="error" value="4"> Captcha
|
/external/chromium/chrome/browser/ui/webui/chromeos/ |
enterprise_enrollment_ui.h | 26 const std::string& captcha,
|
enterprise_enrollment_ui.cc | 132 std::string captcha; local 136 !params_dict->GetString("captcha", &captcha) || 142 controller->OnAuthSubmitted(user, pass, captcha, access_code);
|
/external/chromium/chrome/browser/resources/picasaweb_uploader/js/ |
picasa_client.js | 111 * Url for captcha challenge, if required. 118 * Captcha toekn, if required. 149 * Captcha url to show to user, if needed. 161 * parameter: either 'success', 'failure' or 'captcha'. 162 * @param {?string=} opt_captcha Captcha answer, if was required. 176 // Captcha url should prefixed with this. 179 callback('captcha');
|
upload_page.js | 51 this.captchaRow_ = document.querySelector('.captcha-row'); 52 this.captchaImage_ = document.querySelector('.captcha-row img'); 53 this.captchaInput_ = document.getElementById('captcha-input'); 188 * @param {string} status Login status: success, failure or captcha. 197 } else if (status == 'captcha') { 213 var captcha = this.client_.captchaUrl ? this.captchaInput_.value : null; 215 this.loginCallback_.bind(this), captcha);
|
/external/chromium/chrome/browser/resources/options/ |
sync_setup_overlay.css | 165 #captcha-wrapper { 172 #captcha-image { 190 #cancel-space-no-captcha { 235 #captcha-div { 239 #captcha-instructions {
|
/external/chromium/chrome/browser/ui/webui/options/ |
sync_setup_handler.cc | 42 std::string* captcha, 51 !result->GetString("captcha", captcha) || 377 std::string username, password, captcha, access_code; 378 if (!GetAuthData(json, &username, &password, &captcha, &access_code)) { 386 flow_->OnUserSubmittedAuth(username, password, captcha, access_code);
|
/external/chromium/chrome/browser/resources/picasaweb_uploader/ |
upload.html | 37 <tr class="field invisible captcha-row"> 39 <td><input type="text" id="captcha-input" /></td>
|
/external/chromium/chrome/browser/ |
browser_signin.cc | 204 std::string captcha; local 209 !result->GetString("captcha", &captcha) || 215 username, password, captcha, access_code);
|
/external/chromium/chrome/browser/sync/ |
profile_sync_service_mock.h | 30 const std::string& captcha,
|