Searched defs:token_scope (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/remoting/protocol/
H A Dthird_party_client_authenticator.cc34 std::string token_scope = message->TextNamed(kTokenScopeTag); local
36 if (token_url.empty() || token_scope.empty()) {
49 GURL(token_url), token_scope, base::Bind( local
/external/chromium_org/remoting/host/
H A Dtoken_validator_base.cc46 const std::string& token_scope,
49 token_scope_(token_scope),
77 const std::string& TokenValidatorBase::token_scope() const { function in class:remoting::TokenValidatorBase
154 bool TokenValidatorBase::IsValidScope(const std::string& token_scope) { argument
156 return token_scope == token_scope_;
184 std::string token_scope; local
185 dict->GetStringWithoutPathExpansion("scope", &token_scope);
186 if (!IsValidScope(token_scope)) {
187 LOG(ERROR) << "Invalid scope: '" << token_scope
44 TokenValidatorBase( const ThirdPartyAuthConfig& third_party_auth_config, const std::string& token_scope, scoped_refptr<net::URLRequestContextGetter> request_context_getter) argument

Completed in 352 milliseconds