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/browser/chromeos/login/online_attempt.h" | 5 #include "chrome/browser/chromeos/login/online_attempt.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "chrome/browser/chromeos/cros/cros_library.h" | 12 #include "chrome/browser/chromeos/cros/cros_library.h" |
13 #include "chrome/browser/chromeos/login/auth_attempt_state.h" | 13 #include "chrome/browser/chromeos/login/auth_attempt_state.h" |
14 #include "chrome/browser/chromeos/login/auth_attempt_state_resolver.h" | 14 #include "chrome/browser/chromeos/login/auth_attempt_state_resolver.h" |
15 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
16 #include "chrome/browser/profiles/profile_manager.h" | 16 #include "chrome/browser/profiles/profile_manager.h" |
17 #include "chrome/common/net/gaia/gaia_auth_consumer.h" | |
18 #include "chrome/common/net/gaia/gaia_auth_fetcher.h" | |
19 #include "chrome/common/net/gaia/gaia_constants.h" | |
20 #include "content/public/browser/browser_thread.h" | 17 #include "content/public/browser/browser_thread.h" |
| 18 #include "google_apis/gaia/gaia_auth_consumer.h" |
| 19 #include "google_apis/gaia/gaia_auth_fetcher.h" |
| 20 #include "google_apis/gaia/gaia_constants.h" |
21 #include "net/base/load_flags.h" | 21 #include "net/base/load_flags.h" |
22 #include "net/base/net_errors.h" | 22 #include "net/base/net_errors.h" |
23 #include "net/url_request/url_request_status.h" | 23 #include "net/url_request/url_request_status.h" |
24 #include "third_party/libjingle/source/talk/base/urlencode.h" | 24 #include "third_party/libjingle/source/talk/base/urlencode.h" |
25 | 25 |
26 using content::BrowserThread; | 26 using content::BrowserThread; |
27 | 27 |
28 namespace { | 28 namespace { |
29 | 29 |
30 // The service scope of the OAuth v2 token that ChromeOS login will be | 30 // The service scope of the OAuth v2 token that ChromeOS login will be |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 | 204 |
205 void OnlineAttempt::TriggerResolve( | 205 void OnlineAttempt::TriggerResolve( |
206 const LoginFailure& outcome) { | 206 const LoginFailure& outcome) { |
207 attempt_->RecordOnlineLoginStatus(outcome); | 207 attempt_->RecordOnlineLoginStatus(outcome); |
208 client_fetcher_.reset(NULL); | 208 client_fetcher_.reset(NULL); |
209 oauth_fetcher_.reset(NULL); | 209 oauth_fetcher_.reset(NULL); |
210 resolver_->Resolve(); | 210 resolver_->Resolve(); |
211 } | 211 } |
212 | 212 |
213 } // namespace chromeos | 213 } // namespace chromeos |
OLD | NEW |