HomeSort by relevance Sort by last modified time
    Searched defs:token_scope (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/remoting/protocol/
third_party_client_authenticator.cc 34 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/
token_validator_base.cc 46 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) {
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

Completed in 67 milliseconds