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

  /external/chromium_org/remoting/host/setup/
oauth_client.h 27 // and |refresh_token| that correspond to the given |auth_code|, or with empty
38 // Redeems |auth_code| using |oauth_client_info| to obtain |refresh_token| and
46 const std::string& auth_code,
63 const std::string& auth_code,
67 std::string auth_code; member in struct:remoting::OAuthClient::Request
start_host.cc 109 std::string auth_code = command_line->GetSwitchValueASCII("code"); local
149 if (auth_code.empty()) {
152 auth_code = ReadString(true);
181 host_starter->StartHost(host_name, host_pin, true, auth_code, redirect_url,
me2me_native_messaging_host.cc 408 std::string auth_code; local
409 if (!message->GetString("authorizationCode", &auth_code)) {
422 oauth_client_info, auth_code, base::Bind(
  /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(base::WideToUTF8(static_cast<BSTR>(url)),
81 if (!auth_code->empty()) {
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_auth.cc 174 std::string auth_code; local
175 if (!json_data->GetString(kOAuthCodeValue, &auth_code)) {
193 auth_code,
  /external/chromium_org/google_apis/gaia/
fake_gaia.h 60 // auth_code cookie value response for /o/oauth2/programmatic_auth call.
61 std::string auth_code; member in struct:FakeGaia::MergeSessionParams
gaia_auth_fetcher_unittest.cc 722 std::string auth_code; local
725 cookies, &auth_code));
726 EXPECT_EQ("", auth_code);
729 std::string auth_code; local
735 cookies, &auth_code));
736 EXPECT_EQ("", auth_code);
739 std::string auth_code; local
746 cookies, &auth_code));
747 EXPECT_EQ("test-code", auth_code);
750 std::string auth_code; local
    [all...]
fake_gaia.cc 151 params.auth_code = kTestAuthCode;
290 if (merge_session_params_.auth_code.empty()) {
326 merge_session_params_.auth_code.c_str()));
467 std::string auth_code; local
468 if (!GetQueryParameter(request.content, "code", &auth_code) ||
469 auth_code != merge_session_params_.auth_code) {
gaia_auth_fetcher.cc 324 const std::string& auth_code) {
331 std::string encoded_auth_code = net::EscapeUrlEncodedData(auth_code, true);
449 std::string* auth_code) {
450 DCHECK(auth_code);
453 if (ParseClientLoginToOAuth2Cookie(*iter, auth_code))
461 std::string* auth_code) {
475 auth_code->assign(part.substr(
605 const std::string& auth_code) {
609 request_body_ = MakeGetTokenPairBody(auth_code);
805 std::string auth_code; local
    [all...]
  /external/chromium_org/chrome/browser/supervised_user/
supervised_user_refresh_token_fetcher.cc 228 std::string auth_code; local
229 if (!dict->GetString(kCodeKey, &auth_code)) {
239 gaia_oauth_client_->GetTokensFromAuthCode(client_info, auth_code, kNumRetries,
supervised_user_refresh_token_fetcher_unittest.cc 188 std::string auth_code; local
189 EXPECT_TRUE(GetValueForKey(url_fetcher->upload_data(), "code", &auth_code));
190 EXPECT_EQ(kAuthorizationCode, auth_code);

Completed in 182 milliseconds