/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_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/ |
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_ACCESS_TOKEN_ = 'oauth2-access-token' [all...] |
remoting.js | 66 remoting.oauth2 = new remoting.OAuth2(); 67 if (!remoting.oauth2.isAuthenticated()) { 70 remoting.identity = remoting.oauth2; 380 remoting.oauth2.clear(); 532 // The OAuth2 class still uses window.localStorage, so don't migrate any of 535 'oauth2-refresh-token', 536 'oauth2-refresh-token-revokable', 537 'oauth2-access-token', 538 'oauth2-xsrf-token' [all...] |
host_session.js | 59 * @param {string} accessToken A valid OAuth2 access token. 75 email, 'oauth2:' + accessToken,
|
event_handlers.js | 43 remoting.oauth2.doAuthRedirect();
|
it2me_host_facade.js | 122 * (e.g. oauth2) and the access token.
|
xmpp_login_handler.js | 20 * @param {string} authToken OAuth2 token. 79 * client -> server: <auth> message with the OAuth2 token. 82 * methods which is expected to include X-OAUTH2 157 if (mechanisms.indexOf("X-OAUTH2")) { 159 "OAuth2 is not supported by the server."); 235 'mechanism="X-OAUTH2" auth:service="oauth2" ' +
|
host_controller.js | 256 remoting.oauth2.getRefreshToken()),
|
host_list.js | 172 /** @param {string} token The OAuth2 token. */ 384 /** @param {string} token The OAuth2 token. */ 500 remoting.oauth2.doAuthRedirect();
|
/prebuilts/tools/common/google-api-java-client/1.8.0-rc/ |
google-api-java-client-min-repackaged.jar | |
/external/chromium_org/remoting/webapp/unittests/ |
xmpp_login_handler_unittest.js | 54 '<mechanism>X-OAUTH2</mechanism>' + 70 '<auth xmlns="urn:ietf:params:xml:ns:xmpp-sasl" mechanism="X-OAUTH2" ' + 71 'auth:service="oauth2" auth:allow-generated-jid="true" ' + 84 '<mechanism>X-OAUTH2</mechanism>' +
|
/external/chromium_org/remoting/webapp/background/ |
it2me_helpee_channel.js | 378 * We need to implement token fetching for the v1 app using remoting.OAuth2 409 'oauth2:' + accessToken,
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
chrome_extension_externs.js | 148 /** @type {!chrome.runtime.Manifest.Oauth2|undefined} */ 149 chrome.runtime.Manifest.prototype.oauth2; 154 * Oauth2 info in the manifest. 158 chrome.runtime.Manifest.Oauth2 = function() {}; 162 chrome.runtime.Manifest.Oauth2.prototype.client_id; 165 chrome.runtime.Manifest.Oauth2.prototype.scopes;
|
/external/chromium_org/third_party/closure_compiler/externs/ |
chrome_extensions.js | [all...] |