Home | History | Annotate | Download | only in gaia

Lines Matching full:service

5 // The TokenService will supply authentication tokens for any service that
7 // the token service is expected to call ClientLogin to derive a new SID and
13 // A token service controller like the ChromiumOS login is expected to:
29 // if (IsServiceICareAbout(notification.service())) {
69 TokenAvailableDetails(const std::string& service,
71 : service_(service), token_(token) {}
72 const std::string& service() const { return service_; }
83 TokenRequestFailedDetails(const std::string& service,
85 : service_(service), error_(error) {}
86 const std::string& service() const { return service_; }
93 // Initialize this token service with a request source
98 // Update the credentials in the token service.
130 bool HasTokenForService(const char* const service) const;
131 const std::string& GetTokenForService(const char* const service) const;
134 void IssueAuthTokenForTest(const std::string& service,
138 virtual void OnIssueAuthTokenSuccess(const std::string& service,
140 virtual void OnIssueAuthTokenFailure(const std::string& service,
154 void FireTokenAvailableNotification(const std::string& service,
157 void FireTokenRequestFailedNotification(const std::string& service,
163 void SaveAuthTokenToDB(const std::string& service,
166 // Web data service to access tokens from.
183 // the ordering, nor do we care which is for which service.
185 // Map from service to token.