HomeSort by relevance Sort by last modified time
    Searched refs:lsid (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium/chrome/common/net/gaia/
gaia_auth_consumer.cc 17 lsid(new_lsid),
27 lsid == b.lsid &&
gaia_auth_fetcher.cc 44 "LSID=%s&"
49 "LSID=%s";
179 const std::string& lsid,
182 std::string encoded_lsid = UrlEncodeString(lsid);
197 std::string GaiaAuthFetcher::MakeGetUserInfoBody(const std::string& lsid) {
198 std::string encoded_lsid = UrlEncodeString(lsid);
206 std::string* lsid,
218 } else if (i->first == "LSID") {
219 lsid->assign(i->second);
283 const std::string& lsid,
372 std::string lsid; local
    [all...]
gaia_auth_fetcher.h 66 const std::string& lsid,
73 void StartGetUserInfo(const std::string& lsid,
133 std::string* lsid,
161 // Supply the sid / lsid returned from ClientLogin in order to
164 const std::string& lsid,
166 // Supply the lsid returned from ClientLogin in order to fetch
168 static std::string MakeGetUserInfoBody(const std::string& lsid);
gaia_auth_consumer.h 28 std::string lsid; member in struct:GaiaAuthConsumer::ClientLoginResult
gaia_authenticator.cc 86 bool GaiaAuthenticator::AuthenticateWithLsid(const string& lsid) {
87 auth_results_.lsid = lsid;
88 // We need to lookup the email associated with this LSID cookie in order to
217 post_body += "LSID=";
218 post_body += EscapeUrlEncodedData(results->lsid);
267 post_body += "LSID=";
268 post_body += EscapeUrlEncodedData(results->lsid);
308 } else if (i->first == "LSID") {
309 results->lsid = i->second
    [all...]
gaia_authenticator.h 17 // // or gaia_auth.lsid()
115 // Pass the LSID to authenticate with. If the authentication succeeds, you can
119 bool AuthenticateWithLsid(const std::string& lsid);
142 std::string lsid; member in struct:gaia::GaiaAuthenticator::AuthResults
185 // Caller should fill in results->LSID before calling. Result in
221 // Retrieve LSID cookie. For details, see the Google Accounts documentation.
222 inline std::string lsid() const { function in class:gaia::GaiaAuthenticator
224 return auth_results_.lsid;
gaia_auth_fetcher_unittest.cc 69 const std::string& lsid,
79 EXPECT_EQ(lsid, out_lsid);
216 RunParsingTest("SID=sid\nLSID=lsid\nAuth=auth\n", "sid", "lsid", "auth");
217 RunParsingTest("LSID=lsid\nSID=sid\nAuth=auth\n", "sid", "lsid", "auth");
218 RunParsingTest("SID=sid\nLSID=lsid\nAuth=auth", "sid", "lsid", "auth");
220 RunParsingTest("LSID=lsid\nAuth=auth\n", "", "lsid", "auth")
    [all...]
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_proxy_service.h 32 virtual void EnableForUser(const std::string& lsid, const std::string& email);
55 void EnableCloudPrintProxy(const std::string& lsid, const std::string& email);
cloud_print_proxy_service.cc 76 void CloudPrintProxyService::EnableForUser(const std::string& lsid,
80 this, &CloudPrintProxyService::EnableCloudPrintProxy, lsid, email));
155 void CloudPrintProxyService::EnableCloudPrintProxy(const std::string& lsid,
160 process_control->Send(new ServiceMsg_EnableCloudPrintProxy(lsid));
cloud_print_setup_flow.cc 208 lsid_ = credentials.lsid;
214 profile_->GetCloudPrintProxyService()->EnableForUser(credentials.lsid,
  /external/chromium_org/google_apis/gaia/
gaia_auth_consumer.cc 17 lsid(new_lsid),
27 lsid == b.lsid &&
gaia_auth_fetcher.h 54 // Start a request to obtain the SID and LSID cookies for the the account
72 // |sid| and |lsid| and the |service|.
77 const std::string& lsid,
125 // Start a request to get user info for the account identified by |lsid|.
129 void StartGetUserInfo(const std::string& lsid);
275 std::string* lsid,
304 // Supply the sid / lsid returned from ClientLogin in order to
307 const std::string& lsid,
315 // Supply the lsid returned from ClientLogin in order to fetch
317 static std::string MakeGetUserInfoBody(const std::string& lsid);
    [all...]
gaia_auth_fetcher.cc 80 "LSID=%s&"
98 "LSID=%s";
282 const std::string& lsid,
285 std::string encoded_lsid = net::EscapeUrlEncodedData(lsid, true);
334 std::string GaiaAuthFetcher::MakeGetUserInfoBody(const std::string& lsid) {
335 std::string encoded_lsid = net::EscapeUrlEncodedData(lsid, true);
364 std::string* lsid,
370 lsid->clear();
378 } else if (i->first == "LSID") {
379 lsid->assign(i->second)
773 std::string lsid; local
890 std::string lsid; local
    [all...]
gaia_auth_consumer.h 35 std::string lsid; member in struct:GaiaAuthConsumer::ClientLoginResult
gaia_auth_fetcher_unittest.cc 121 const std::string& lsid,
131 EXPECT_EQ(lsid, out_lsid);
291 RunParsingTest("SID=sid\nLSID=lsid\nAuth=auth\n", "sid", "lsid", "auth");
292 RunParsingTest("LSID=lsid\nSID=sid\nAuth=auth\n", "sid", "lsid", "auth");
293 RunParsingTest("SID=sid\nLSID=lsid\nAuth=auth", "sid", "lsid", "auth");
295 RunParsingTest("LSID=lsid\nAuth=auth\n", std::string(), "lsid", "auth")
    [all...]
  /external/chromium_org/chrome/browser/net/gaia/
gaia_oauth_consumer.h 36 const std::string& lsid,
gaia_oauth_fetcher.cc 169 std::string* lsid,
180 } else if (i->first == "LSID") {
181 *lsid = i->second;
444 std::string lsid; local
446 ParseOAuthLoginResponse(data, &sid, &lsid, &auth);
447 if (!sid.empty() && !lsid.empty() && !auth.empty()) {
448 consumer_->OnOAuthLoginSuccess(sid, lsid, auth);
gaia_oauth_fetcher.h 161 std::string* lsid,
  /external/chromium_org/chrome/browser/signin/
token_service.cc 157 SaveAuthTokenToDB(GaiaConstants::kGaiaLsid, credentials.lsid);
165 // Notify AboutSigninInternals that a new lsid and sid are available.
168 FOR_DIAGNOSTICS_OBSERVERS(NotifySigninValueChanged(LSID, credentials.lsid));
223 return !credentials_.lsid.empty() && !credentials_.sid.empty();
232 credentials_.sid, credentials_.lsid, kServices[i]);
404 if (credentials_.lsid.empty() && credentials_.sid.empty()) {
405 // Look for GAIA SID and LSID tokens. If we have both, and the current
407 std::string lsid; local
411 lsid = db_tokens.find(GaiaConstants::kGaiaLsid)->second
    [all...]
signin_manager.cc 234 // jar and mints a new ClientLogin-style SID/LSID pair. This involves going
239 // - call /accounts/OAuthLogin with the oauth2 access token and get SID/LSID
242 // The resulting SID/LSID can then be used just as if
262 // Make sure the LSID cookie is set on the GAIA host, instead of a super-
264 if (it->Name() == "LSID") {
266 // Found a valid LSID cookie. Continue loop to make sure we don't have
267 // invalid LSID cookies on any super-domain.
353 NotifyDiagnosticsObservers(LSID, "");
503 NotifyDiagnosticsObservers(LSID, result.lsid);
    [all...]
  /external/chromium/chrome/browser/net/gaia/
token_service.cc 119 return !credentials_.lsid.empty() && !credentials_.sid.empty();
123 return !credentials_.lsid.empty();
127 return credentials_.lsid;
135 credentials_.lsid,
  /external/chromium/chrome/browser/remoting/
setup_flow_login_step.cc 98 authenticator_->StartIssueAuthToken(credentials.sid, credentials.lsid,
  /external/chromium/chrome/browser/sync/
signin_manager.cc 106 client_login_->StartGetUserInfo(result.lsid, kGetInfoEmailKey);
  /external/chromium/chrome/browser/chromeos/login/
enterprise_enrollment_screen.cc 104 result.sid, result.lsid, GaiaConstants::kDeviceManagementService);
  /external/chromium/chrome/browser/sync/glue/
sync_backend_host.h 132 // bootstrap authentication using |lsid|, if it isn't empty.
315 std::string lsid; member in struct:browser_sync::SyncBackendHost::Core::DoInitializeOptions

Completed in 368 milliseconds

1 2