HomeSort by relevance Sort by last modified time
    Searched defs:auth_code (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/remoting/host/setup/win/
auth_code_getter.cc 60 std::string auth_code; local
61 if (TestBrowserUrl(&auth_code)) {
62 on_auth_code_.Run(auth_code);
68 bool AuthCodeGetter::TestBrowserUrl(std::string* auth_code) {
69 *auth_code = "";
79 *auth_code = GetOauthCodeInUrl(WideToUTF8(static_cast<BSTR>(url)),
81 if (!auth_code->empty()) {
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_auth.cc 132 std::string auth_code; local
133 if (!json_data->GetString(kOAuthCodeValue, &auth_code)) {
144 auth_code,
  /external/chromium_org/remoting/host/setup/
start_host.cc 94 std::string auth_code = command_line->GetSwitchValueASCII("code"); local
134 if (auth_code.empty()) {
137 auth_code = ReadString(true);
165 host_starter->StartHost(host_name, host_pin, true, auth_code, redirect_url,
  /external/chromium_org/chrome/browser/chromeos/login/
user.h 23 // |username|, |password|, |auth_code| and |username_hash| which is returned
30 const std::string& auth_code);
33 const std::string& auth_code,
39 std::string auth_code; member in struct:chromeos::UserContext
  /external/chromium_org/chrome/browser/managed_mode/
managed_user_refresh_token_fetcher.cc 206 std::string auth_code; local
207 if (!dict->GetString(kCodeKey, &auth_code)) {
217 gaia_oauth_client_->GetTokensFromAuthCode(client_info, auth_code, kNumRetries,
managed_user_refresh_token_fetcher_unittest.cc 262 std::string auth_code; local
263 EXPECT_TRUE(GetValueForKey(url_fetcher->upload_data(), "code", &auth_code));
264 EXPECT_EQ(kAuthorizationCode, auth_code);
  /external/chromium_org/google_apis/gaia/
gaia_auth_fetcher_unittest.cc 745 std::string auth_code; local
748 cookies, &auth_code));
749 EXPECT_EQ("", auth_code);
752 std::string auth_code; local
758 cookies, &auth_code));
759 EXPECT_EQ("", auth_code);
762 std::string auth_code; local
769 cookies, &auth_code));
770 EXPECT_EQ("test-code", auth_code);
773 std::string auth_code; local
    [all...]
gaia_auth_fetcher.cc 312 const std::string& auth_code) {
319 std::string encoded_auth_code = net::EscapeUrlEncodedData(auth_code, true);
429 std::string* auth_code) {
430 DCHECK(auth_code);
433 if (ParseClientLoginToOAuth2Cookie(*iter, auth_code))
441 std::string* auth_code) {
455 auth_code->assign(part.substr(
571 const std::string& auth_code) {
575 request_body_ = MakeGetTokenPairBody(auth_code);
803 std::string auth_code; local
    [all...]

Completed in 2619 milliseconds