| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/signin/token_handle_fetcher.h" | 5 #include "chrome/browser/chromeos/login/signin/token_handle_fetcher.h" |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "base/metrics/histogram_macros.h" | 8 #include "base/metrics/histogram_macros.h" |
| 9 #include "chrome/browser/chromeos/login/signin/token_handle_util.h" | 9 #include "chrome/browser/chromeos/login/signin/token_handle_util.h" |
| 10 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 10 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 | 126 |
| 127 void TokenHandleFetcher::OnOAuthError() { | 127 void TokenHandleFetcher::OnOAuthError() { |
| 128 callback_.Run(account_id_, false); | 128 callback_.Run(account_id_, false); |
| 129 } | 129 } |
| 130 | 130 |
| 131 void TokenHandleFetcher::OnNetworkError(int response_code) { | 131 void TokenHandleFetcher::OnNetworkError(int response_code) { |
| 132 callback_.Run(account_id_, false); | 132 callback_.Run(account_id_, false); |
| 133 } | 133 } |
| 134 | 134 |
| 135 void TokenHandleFetcher::OnGetTokenInfoResponse( | 135 void TokenHandleFetcher::OnGetTokenInfoResponse( |
| 136 scoped_ptr<base::DictionaryValue> token_info) { | 136 std::unique_ptr<base::DictionaryValue> token_info) { |
| 137 bool success = false; | 137 bool success = false; |
| 138 if (!token_info->HasKey("error")) { | 138 if (!token_info->HasKey("error")) { |
| 139 std::string handle; | 139 std::string handle; |
| 140 if (token_info->GetString("token_handle", &handle)) { | 140 if (token_info->GetString("token_handle", &handle)) { |
| 141 success = true; | 141 success = true; |
| 142 token_handle_util_->StoreTokenHandle(account_id_, handle); | 142 token_handle_util_->StoreTokenHandle(account_id_, handle); |
| 143 } | 143 } |
| 144 } | 144 } |
| 145 const base::TimeDelta duration = | 145 const base::TimeDelta duration = |
| 146 base::TimeTicks::Now() - tokeninfo_response_start_time_; | 146 base::TimeTicks::Now() - tokeninfo_response_start_time_; |
| 147 UMA_HISTOGRAM_TIMES("Login.TokenObtainResponseTime", duration); | 147 UMA_HISTOGRAM_TIMES("Login.TokenObtainResponseTime", duration); |
| 148 callback_.Run(account_id_, success); | 148 callback_.Run(account_id_, success); |
| 149 } | 149 } |
| 150 | 150 |
| 151 void TokenHandleFetcher::OnProfileDestroyed() { | 151 void TokenHandleFetcher::OnProfileDestroyed() { |
| 152 callback_.Run(account_id_, false); | 152 callback_.Run(account_id_, false); |
| 153 } | 153 } |
| OLD | NEW |