blob: 2d325dc83199adf3f449d783cf1fba3168cdb184 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/sync/fake_oauth2_token_service.h"
#include "base/message_loop/message_loop.h"
#include "chrome/browser/profiles/profile.h"
#include "content/public/browser/browser_context.h"
void FakeOAuth2TokenService::FetchOAuth2Token(
OAuth2TokenService::RequestImpl* request,
const std::string& account_id,
net::URLRequestContextGetter* getter,
const std::string& client_id,
const std::string& client_secret,
const OAuth2TokenService::ScopeSet& scopes) {
// Request will succeed without network IO.
base::MessageLoop::current()->PostTask(FROM_HERE, base::Bind(
&RequestImpl::InformConsumer,
request->AsWeakPtr(),
GoogleServiceAuthError(GoogleServiceAuthError::NONE),
"access_token",
base::Time::Max()));
}
BrowserContextKeyedService* FakeOAuth2TokenService::BuildTokenService(
content::BrowserContext* context) {
Profile* profile = static_cast<Profile*>(context);
FakeOAuth2TokenService* service = new FakeOAuth2TokenService();
service->Initialize(profile);
return service;
}
void FakeOAuth2TokenService::PersistCredentials(
const std::string& account_id,
const std::string& refresh_token) {
// Disabling the token persistence.
}
void FakeOAuth2TokenService::ClearPersistedCredentials(
const std::string& account_id) {
// Disabling the token persistence.
}
|