OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:OAuth2TokenService
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/signin/
AndroidProfileOAuth2TokenServiceHelper.java
18
* Temporary wrapper class until all callers have moved to use {@link
OAuth2TokenService
}.
26
* Use {@link
OAuth2TokenService
#getOAuth2AccessToken} instead.
31
OAuth2TokenService
.getOAuth2AccessToken(context, activity, account, scope, callback);
35
* Use {@link
OAuth2TokenService
#invalidateOAuth2AuthToken} instead.
39
OAuth2TokenService
.invalidateOAuth2AuthToken(context, accessToken);
43
* Use {@link
OAuth2TokenService
#getOAuth2AccessTokenWithTimeout} instead.
49
return
OAuth2TokenService
.getOAuth2AccessTokenWithTimeout(
OAuth2TokenService.java
26
* Java instance for the native
OAuth2TokenService
.
32
public final class
OAuth2TokenService
{
34
private static final String TAG = "
OAuth2TokenService
";
47
private
OAuth2TokenService
(long nativeOAuth2Service) {
52
public static
OAuth2TokenService
getForProfile(Profile profile) {
54
return (
OAuth2TokenService
) nativeGetForProfile(profile);
58
private static
OAuth2TokenService
create(long nativeOAuth2Service) {
60
return new
OAuth2TokenService
(nativeOAuth2Service);
212
*
OAuth2TokenService
that a refresh token is now available. This may cause observers to retry
232
*
OAuth2TokenService
that a refresh token is now revoked
[
all
...]
/external/chromium_org/google_apis/gaia/
oauth2_token_service.h
53
class
OAuth2TokenService
: public base::NonThreadSafe {
91
// Called after all refresh tokens are loaded during
OAuth2TokenService
101
OAuth2TokenService
();
102
virtual ~
OAuth2TokenService
();
173
// Implements a cancelable |
OAuth2TokenService
::Request|, which should be
348
DISALLOW_COPY_AND_ASSIGN(
OAuth2TokenService
);
oauth2_token_service.cc
20
int
OAuth2TokenService
::max_fetch_retry_num_ = 5;
22
OAuth2TokenService
::RequestParameters::RequestParameters(
31
OAuth2TokenService
::RequestParameters::~RequestParameters() {
34
bool
OAuth2TokenService
::RequestParameters::operator<(
49
OAuth2TokenService
::RequestImpl::RequestImpl(
51
OAuth2TokenService
::Consumer* consumer)
56
OAuth2TokenService
::RequestImpl::~RequestImpl() {
60
std::string
OAuth2TokenService
::RequestImpl::GetAccountId() const {
64
void
OAuth2TokenService
::RequestImpl::InformConsumer(
80
// It aims to meet
OAuth2TokenService
's requirements on token fetching. Retr
[
all
...]
Completed in 63 milliseconds