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

Side by Side Diff: google_apis/gaia/oauth2_token_service_delegate.cc

Issue 2672833002: [Desktop] Add diagnostics about loading the refresh tokens. (Closed)
Patch Set: Fix compile Created 3 years, 10 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
« no previous file with comments | « google_apis/gaia/oauth2_token_service_delegate.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "base/profiler/scoped_tracker.h" 5 #include "base/profiler/scoped_tracker.h"
6 #include "google_apis/gaia/oauth2_token_service.h" 6 #include "google_apis/gaia/oauth2_token_service.h"
7 #include "google_apis/gaia/oauth2_token_service_delegate.h" 7 #include "google_apis/gaia/oauth2_token_service_delegate.h"
8 8
9 OAuth2TokenServiceDelegate::ScopedBatchChange::ScopedBatchChange( 9 OAuth2TokenServiceDelegate::ScopedBatchChange::ScopedBatchChange(
10 OAuth2TokenServiceDelegate* delegate) 10 OAuth2TokenServiceDelegate* delegate)
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 return false; 112 return false;
113 } 113 }
114 114
115 std::vector<std::string> OAuth2TokenServiceDelegate::GetAccounts() { 115 std::vector<std::string> OAuth2TokenServiceDelegate::GetAccounts() {
116 return std::vector<std::string>(); 116 return std::vector<std::string>();
117 } 117 }
118 118
119 const net::BackoffEntry* OAuth2TokenServiceDelegate::BackoffEntry() const { 119 const net::BackoffEntry* OAuth2TokenServiceDelegate::BackoffEntry() const {
120 return nullptr; 120 return nullptr;
121 } 121 }
122
123 OAuth2TokenServiceDelegate::LoadCredentialsState
124 OAuth2TokenServiceDelegate::GetLoadCredentialsState() const {
125 return LOAD_CREDENTIALS_UNKNOWN;
126 }
OLDNEW
« no previous file with comments | « google_apis/gaia/oauth2_token_service_delegate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698