Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Side by Side Diff: chrome/browser/chromeos/login/signin/token_handle_fetcher.cc

Issue 1870793002: Convert //chrome/browser/chromeos from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: iwyu fixes Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698