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

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

Issue 136723009: Move UbertokenFetcher from //chrome to //google_apis. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « google_apis/gaia/fake_oauth2_token_service.h ('k') | google_apis/gaia/ubertoken_fetcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "google_apis/gaia/fake_oauth2_token_service.h"
6
7 FakeOAuth2TokenService::FakeOAuth2TokenService() {
8 }
9
10 FakeOAuth2TokenService::~FakeOAuth2TokenService() {
11 }
12
13 std::string FakeOAuth2TokenService::GetRefreshToken(
14 const std::string& account_id) {
15 return std::string();
16 }
17
18 void FakeOAuth2TokenService::FetchOAuth2Token(
19 RequestImpl* request,
20 const std::string& account_id,
21 net::URLRequestContextGetter* getter,
22 const std::string& client_id,
23 const std::string& client_secret,
24 const ScopeSet& scopes) {
25 }
26
27 void FakeOAuth2TokenService::InvalidateOAuth2Token(
28 const std::string& account_id,
29 const std::string& client_id,
30 const ScopeSet& scopes,
31 const std::string& access_token) {
32 }
33
34 net::URLRequestContextGetter* FakeOAuth2TokenService::GetRequestContext() {
35 return NULL;
36 }
OLDNEW
« no previous file with comments | « google_apis/gaia/fake_oauth2_token_service.h ('k') | google_apis/gaia/ubertoken_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698