Home | History | Annotate | Download | only in oauth2

Lines Matching refs:That

3 // license that can be found in the LICENSE file.
65 // A TokenSource is anything that can return a token.
83 // "access_type" field that gets sent in the URL returned by
117 // that asks for permissions for the required scopes explicitly.
120 // always provide a non-zero string and validate that it matches the
194 // TokenSource returns a TokenSource that returns t until t expires,
212 // tokenRefresher is a TokenSource that makes "grant_type"=="refresh_token"
243 // reuseTokenSource is a TokenSource that holds a single token in memory
271 // StaticTokenSource returns a TokenSource that always returns the same token.
273 // useful for tokens that never expire.
278 // staticTokenSource is a TokenSource that always returns the same Token.
326 // Don't wrap a reuseTokenSource in itself. That would work,