Home
last modified time | relevance | path

Searched refs:tokenUrl (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
DThirdPartyTokenFetcher.java102 public void fetchToken(String tokenUrl, String clientId, String scope) { in fetchToken() argument
103 if (!isValidTokenUrl(tokenUrl)) { in fetchToken()
106 " URL: " + tokenUrl + in fetchToken()
111 Uri uri = buildRequestUri(tokenUrl, clientId, scope); in fetchToken()
123 private Uri buildRequestUri(String tokenUrl, String clientId, String scope) { in buildRequestUri() argument
124 Uri.Builder uriBuilder = Uri.parse(tokenUrl).buildUpon(); in buildRequestUri()
135 private boolean isValidTokenUrl(String tokenUrl) { in isValidTokenUrl() argument
137 if (tokenUrl.matches(pattern)) { in isValidTokenUrl()
DChromoting.java496 public void fetchThirdPartyToken(String tokenUrl, String clientId, String scope) { in fetchThirdPartyToken() argument
498 mTokenFetcher.fetchToken(tokenUrl, clientId, scope); in fetchThirdPartyToken()
/external/chromium_org/remoting/webapp/
Dthird_party_token_fetcher.js38 tokenUrl, hostPublicKey, scope, tokenUrlPatterns, argument
40 this.tokenUrl_ = tokenUrl;
Dclient_screen.js238 tokenUrl, hostPublicKey, scope, onThirdPartyTokenFetched) { argument
240 tokenUrl, hostPublicKey, scope, host.tokenUrlPatterns,
Dclient_plugin_impl.js72 tokenUrl, hostPublicKey, scope) {}; argument
452 var tokenUrl = getStringAttr(message.data, 'tokenUrl');
455 this.fetchThirdPartyTokenHandler_(tokenUrl, hostPublicKey, scope);
Dsession_connector_impl.js170 tokenUrl, scope, onThirdPartyTokenFetched) {}; argument
Dclient_session.js883 var fetchThirdPartyToken = function(tokenUrl, hostPublicKey, scope) { argument
885 tokenUrl, hostPublicKey, scope,
/external/chromium_org/remoting/webapp/browser_test/
Dmock_session_connector.js87 var fetchThirdPartyToken = function(tokenUrl, scope, callback) { argument
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/jni/
DJniInterface.java481 public static void fetchThirdPartyToken(String tokenUrl, String clientId, String scope) { in fetchThirdPartyToken() argument
483 app.fetchThirdPartyToken(tokenUrl, clientId, scope); in fetchThirdPartyToken()