| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/common/net/gaia/oauth2_api_call_flow.h" | 5 #include "chrome/common/net/gaia/oauth2_api_call_flow.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/stringprintf.h" | 11 #include "base/stringprintf.h" |
| 12 #include "chrome/common/net/gaia/gaia_urls.h" | 12 #include "chrome/common/net/gaia/gaia_urls.h" |
| 13 #include "content/public/common/url_fetcher.h" | |
| 14 #include "net/base/escape.h" | 13 #include "net/base/escape.h" |
| 15 #include "net/base/load_flags.h" | 14 #include "net/base/load_flags.h" |
| 16 #include "net/http/http_status_code.h" | 15 #include "net/http/http_status_code.h" |
| 16 #include "net/url_request/url_fetcher.h" |
| 17 #include "net/url_request/url_request_context_getter.h" | 17 #include "net/url_request/url_request_context_getter.h" |
| 18 #include "net/url_request/url_request_status.h" | 18 #include "net/url_request/url_request_status.h" |
| 19 | 19 |
| 20 using net::ResponseCookies; | 20 using net::ResponseCookies; |
| 21 using net::URLFetcher; | 21 using net::URLFetcher; |
| 22 using net::URLFetcherDelegate; | 22 using net::URLFetcherDelegate; |
| 23 using net::URLRequestContextGetter; | 23 using net::URLRequestContextGetter; |
| 24 using net::URLRequestStatus; | 24 using net::URLRequestStatus; |
| 25 | 25 |
| 26 namespace { | 26 namespace { |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 } | 141 } |
| 142 | 142 |
| 143 void OAuth2ApiCallFlow::OnGetTokenFailure( | 143 void OAuth2ApiCallFlow::OnGetTokenFailure( |
| 144 const GoogleServiceAuthError& error) { | 144 const GoogleServiceAuthError& error) { |
| 145 EndMintAccessToken(&error); | 145 EndMintAccessToken(&error); |
| 146 } | 146 } |
| 147 | 147 |
| 148 URLFetcher* OAuth2ApiCallFlow::CreateURLFetcher() { | 148 URLFetcher* OAuth2ApiCallFlow::CreateURLFetcher() { |
| 149 std::string body = CreateApiCallBody(); | 149 std::string body = CreateApiCallBody(); |
| 150 bool empty_body = body.empty(); | 150 bool empty_body = body.empty(); |
| 151 URLFetcher* result = content::URLFetcher::Create( | 151 URLFetcher* result = net::URLFetcher::Create( |
| 152 0, | 152 0, |
| 153 CreateApiCallUrl(), | 153 CreateApiCallUrl(), |
| 154 empty_body ? URLFetcher::GET : URLFetcher::POST, | 154 empty_body ? URLFetcher::GET : URLFetcher::POST, |
| 155 this); | 155 this); |
| 156 | 156 |
| 157 result->SetRequestContext(context_); | 157 result->SetRequestContext(context_); |
| 158 result->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES | | 158 result->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES | |
| 159 net::LOAD_DO_NOT_SAVE_COOKIES); | 159 net::LOAD_DO_NOT_SAVE_COOKIES); |
| 160 result->AddExtraRequestHeader(MakeAuthorizationHeader(access_token_)); | 160 result->AddExtraRequestHeader(MakeAuthorizationHeader(access_token_)); |
| 161 | 161 |
| 162 if (!empty_body) | 162 if (!empty_body) |
| 163 result->SetUploadData("application/x-www-form-urlencoded", body); | 163 result->SetUploadData("application/x-www-form-urlencoded", body); |
| 164 | 164 |
| 165 return result; | 165 return result; |
| 166 } | 166 } |
| OLD | NEW |