HomeSort by relevance Sort by last modified time
    Searched refs:oauth2 (Results 1 - 12 of 12) sorted by null

  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/clients/
imap.py 25 import oauth2 namespace
33 if consumer is not None and not isinstance(consumer, oauth2.Consumer):
36 if token is not None and not isinstance(token, oauth2.Token):
40 lambda x: oauth2.build_xoauth_string(url, consumer, token))
smtp.py 25 import oauth2 namespace
34 if consumer is not None and not isinstance(consumer, oauth2.Consumer):
37 if token is not None and not isinstance(token, oauth2.Token):
41 base64.b64encode(oauth2.build_xoauth_string(url, consumer, token)))
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/clients/
imap.py 25 import oauth2 namespace
33 if consumer is not None and not isinstance(consumer, oauth2.Consumer):
36 if token is not None and not isinstance(token, oauth2.Token):
40 lambda x: oauth2.build_xoauth_string(url, consumer, token))
smtp.py 25 import oauth2 namespace
34 if consumer is not None and not isinstance(consumer, oauth2.Consumer):
37 if token is not None and not isinstance(token, oauth2.Token):
41 base64.b64encode(oauth2.build_xoauth_string(url, consumer, token)))
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 12 import oauth2 namespace
55 oauth_token = oauth2.Token(**{
60 oauth_consumer = oauth2.Consumer(**{
66 client = oauth2.Client(oauth_consumer, oauth_token)
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 12 import oauth2 namespace
56 oauth_token = oauth2.Token(**{
61 oauth_consumer = oauth2.Consumer(**{
67 client = oauth2.Client(oauth_consumer, oauth_token)
  /external/chromium_org/remoting/webapp/
remoting.js 64 remoting.oauth2 = new remoting.OAuth2();
65 if (!remoting.oauth2.isAuthenticated()) {
68 remoting.identity = remoting.oauth2;
287 remoting.oauth2.clear();
439 // The OAuth2 class still uses window.localStorage, so don't migrate any of
442 'oauth2-refresh-token',
443 'oauth2-refresh-token-revokable',
444 'oauth2-access-token',
445 'oauth2-xsrf-token'
    [all...]
oauth2.js 7 * OAuth2 class that handles retrieval/storage of an OAuth2 token.
11 * chrome-extensions in OAuth2.
22 /** @type {remoting.OAuth2} */
23 remoting.oauth2 = null;
27 remoting.OAuth2 = function() {
32 remoting.OAuth2.prototype.KEY_REFRESH_TOKEN_ = 'oauth2-refresh-token';
34 remoting.OAuth2.prototype.KEY_REFRESH_TOKEN_REVOKABLE_ =
35 'oauth2-refresh-token-revokable'
    [all...]
host_session.js 60 * @param {string} accessToken A valid OAuth2 access token.
80 this.plugin.connect(email, 'oauth2:' + accessToken);
event_handlers.js 42 remoting.oauth2.doAuthRedirect();
host_controller.js 155 oauth_refresh_token: remoting.oauth2.exportRefreshToken(),
host_list.js 137 /** @param {string} token The OAuth2 token. */
339 /** @param {string} token The OAuth2 token. */
455 remoting.oauth2.doAuthRedirect();

Completed in 161 milliseconds