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

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

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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/metrics/histogram_macros.h" 8 #include "base/metrics/histogram_macros.h"
8 #include "chrome/browser/chromeos/login/signin/token_handle_util.h" 9 #include "chrome/browser/chromeos/login/signin/token_handle_util.h"
9 #include "chrome/browser/chromeos/profiles/profile_helper.h" 10 #include "chrome/browser/chromeos/profiles/profile_helper.h"
10 #include "chrome/browser/profiles/profile.h" 11 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" 12 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
12 #include "chrome/browser/signin/signin_manager_factory.h" 13 #include "chrome/browser/signin/signin_manager_factory.h"
13 #include "chrome/browser/signin/signin_manager_factory.h" 14 #include "chrome/browser/signin/signin_manager_factory.h"
14 #include "components/keyed_service/content/browser_context_keyed_service_shutdow n_notifier_factory.h" 15 #include "components/keyed_service/content/browser_context_keyed_service_shutdow n_notifier_factory.h"
15 #include "components/signin/core/browser/profile_oauth2_token_service.h" 16 #include "components/signin/core/browser/profile_oauth2_token_service.h"
16 #include "components/signin/core/browser/signin_manager.h" 17 #include "components/signin/core/browser/signin_manager.h"
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 } 144 }
144 const base::TimeDelta duration = 145 const base::TimeDelta duration =
145 base::TimeTicks::Now() - tokeninfo_response_start_time_; 146 base::TimeTicks::Now() - tokeninfo_response_start_time_;
146 UMA_HISTOGRAM_TIMES("Login.TokenObtainResponseTime", duration); 147 UMA_HISTOGRAM_TIMES("Login.TokenObtainResponseTime", duration);
147 callback_.Run(account_id_, success); 148 callback_.Run(account_id_, success);
148 } 149 }
149 150
150 void TokenHandleFetcher::OnProfileDestroyed() { 151 void TokenHandleFetcher::OnProfileDestroyed() {
151 callback_.Run(account_id_, false); 152 callback_.Run(account_id_, false);
152 } 153 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/signin/token_handle_fetcher.h ('k') | chrome/browser/chromeos/login/signin/token_handle_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698