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

1 2 3

  /external/chromium_org/chrome/browser/chromeos/login/
multi_profile_user_controller.cc 80 const std::string& user_email) const {
91 if (primary_user_email.empty() || primary_user_email == user_email)
95 if (user_manager->GetOwnerEmail() == user_email)
100 if (policy::PolicyCertServiceFactory::UsedPolicyCertificates(user_email))
132 const std::string behavior = GetCachedValue(user_email);
154 const std::string& user_email) {
157 update->RemoveWithoutPathExpansion(user_email, NULL);
158 policy::PolicyCertServiceFactory::ClearUsedPolicyCertificates(user_email);
162 const std::string& user_email) const {
166 if (dict && dict->GetStringWithoutPathExpansion(user_email, &value)
193 std::string user_email = user_profile->GetProfileName(); local
    [all...]
multi_profile_user_controller.h 41 bool IsUserAllowedInSession(const std::string& user_email) const;
47 void RemoveCachedValues(const std::string& user_email);
58 std::string GetCachedValue(const std::string& user_email) const;
59 void SetCachedValue(const std::string& user_email,
  /external/chromium/chrome/browser/chromeos/cros/
cryptohome_library.h 31 // Asks cryptohomed to try to find the cryptohome for |user_email| and then
33 virtual bool CheckKey(const std::string& user_email,
37 // |user_email| and then use |passhash| to unlock the key.
40 virtual bool AsyncCheckKey(const std::string& user_email,
44 // Asks cryptohomed to try to find the cryptohome for |user_email| and then
46 virtual bool MigrateKey(const std::string& user_email,
51 // |user_email| and then change from using |old_hash| to lock the
55 virtual bool AsyncMigrateKey(const std::string& user_email,
60 // Asks cryptohomed to try to find the cryptohome for |user_email| and then
62 virtual bool Mount(const std::string& user_email,
    [all...]
cryptohome_library.cc 25 bool CheckKey(const std::string& user_email, const std::string& passhash) {
26 return chromeos::CryptohomeCheckKey(user_email.c_str(), passhash.c_str());
29 bool AsyncCheckKey(const std::string& user_email,
33 chromeos::CryptohomeAsyncCheckKey(user_email.c_str(), passhash.c_str()),
38 bool MigrateKey(const std::string& user_email,
41 return chromeos::CryptohomeMigrateKey(user_email.c_str(),
46 bool AsyncMigrateKey(const std::string& user_email,
51 chromeos::CryptohomeAsyncMigrateKey(user_email.c_str(),
58 bool Mount(const std::string& user_email,
61 return chromeos::CryptohomeMountAllowFail(user_email.c_str()
    [all...]
mock_cryptohome_library.h 47 MOCK_METHOD2(CheckKey, bool(const std::string& user_email,
49 MOCK_METHOD3(AsyncCheckKey, bool(const std::string& user_email,
52 MOCK_METHOD3(MigrateKey, bool(const std::string& user_email,
55 MOCK_METHOD4(AsyncMigrateKey, bool(const std::string& user_email,
59 MOCK_METHOD3(Mount, bool(const std::string& user_email,
62 MOCK_METHOD4(AsyncMount, bool(const std::string& user_email,
69 MOCK_METHOD1(Remove, bool(const std::string& user_email));
70 MOCK_METHOD2(AsyncRemove, bool(const std::string& user_email, Delegate* d));
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/handlers/
menu.py 53 user_email = user.email()
57 user_email = ""
62 "user_email": user_email,
  /external/chromium_org/remoting/host/setup/
oauth_client.cc 53 void OAuthClient::SendResponse(const std::string& user_email,
57 on_done.Run(user_email, refresh_token);
69 void OAuthClient::OnGetUserEmailResponse(const std::string& user_email) {
70 SendResponse(user_email, refresh_token_);
oauth_client.h 21 // Called when GetCredentialsFromAuthCode is completed, with the |user_email|
25 const std::string& user_email,
34 // |access_token|, then uses the userinfo endpoint to obtain |user_email|.
35 // Calls CompletionCallback with |user_email| and |refresh_token| when done,
50 virtual void OnGetUserEmailResponse(const std::string& user_email) OVERRIDE;
66 void SendResponse(const std::string& user_email,
  /external/chromium/chrome/browser/
bug_report_data.cc 32 , const std::string& user_email
44 user_email_ = user_email;
bug_report_data.h 39 , const std::string& user_email
57 const std::string& user_email() const { return user_email_; } function in class:BugReportData
  /external/chromium_org/chrome/browser/ui/ash/launcher/
multi_profile_browser_status_monitor.h 20 virtual void ActiveUserChanged(const std::string& user_email) OVERRIDE;
multi_profile_shell_window_launcher_controller.h 20 virtual void ActiveUserChanged(const std::string& user_email) OVERRIDE;
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_proxy.h 48 const std::string& user_email,
58 const std::string& user_email() const { function in class:cloud_print::CloudPrintProxy
65 const std::string& user_email) OVERRIDE;
cloud_print_proxy.cc 115 const std::string& user_email,
134 user_email_ = user_email;
190 info->email = user_email();
207 const std::string& user_email) {
214 if (!user_email.empty()) {
215 user_email_ = user_email;
  /external/chromium_org/chromeos/cryptohome/
async_method_caller.h 44 // |user_email| and then use |passhash| to unlock the key.
46 virtual void AsyncCheckKey(const std::string& user_email,
51 // |user_email| and then change from using |old_hash| to lock the
54 virtual void AsyncMigrateKey(const std::string& user_email,
60 // |user_email| and then mount it using |passhash| to unlock the key.
64 // |user_email|.
71 // for |user_email|, the expected result is
74 virtual void AsyncMount(const std::string& user_email,
80 // |user_email| using |passhash| to unlock the key.
82 virtual void AsyncAddKey(const std::string& user_email,
    [all...]
mock_async_method_caller.h 30 MOCK_METHOD3(AsyncCheckKey, void(const std::string& user_email,
33 MOCK_METHOD4(AsyncMigrateKey, void(const std::string& user_email,
37 MOCK_METHOD4(AsyncMount, void(const std::string& user_email,
41 MOCK_METHOD4(AsyncAddKey, void(const std::string& user_email,
49 MOCK_METHOD2(AsyncRemove, void(const std::string& user_email,
async_method_caller.cc 38 virtual void AsyncCheckKey(const std::string& user_email,
42 AsyncCheckKey(user_email, passhash, base::Bind(
49 virtual void AsyncMigrateKey(const std::string& user_email,
54 AsyncMigrateKey(user_email, old_hash, new_hash, base::Bind(
61 virtual void AsyncMount(const std::string& user_email,
66 AsyncMount(user_email, passhash, flags, base::Bind(
73 virtual void AsyncAddKey(const std::string& user_email,
78 AsyncAddKey(user_email, passhash, new_passhash, base::Bind(
105 virtual void AsyncRemove(const std::string& user_email,
108 AsyncRemove(user_email, base::Bind
    [all...]
  /external/chromium_org/chrome/browser/printing/cloud_print/
cloud_print_proxy_service.h 44 const std::string& user_email,
73 const std::string& user_email,
cloud_print_proxy_service.cc 91 const std::string& user_email,
100 user_email, base::Owned(user_preferences.DeepCopy())));
185 const std::string& user_email,
191 robot_auth_code, robot_email, user_email, *user_preferences));
193 profile_->GetPrefs()->SetString(prefs::kCloudPrintEmail, user_email);
  /external/chromium_org/chrome/browser/extensions/api/cloud_print_private/
cloud_print_private_api.h 31 const std::string& user_email,
cloud_print_private_api.cc 47 params->user_email,
59 params->user_email,
  /external/chromium_org/chromeos/dbus/
fake_session_manager_client.cc 51 void FakeSessionManagerClient::StartSession(const std::string& user_email) {
52 DCHECK_EQ(0UL, user_sessions_.count(user_email));
54 CryptohomeClient::GetStubSanitizedUsername(user_email);
55 user_sessions_[user_email] = user_id_hash;
  /external/chromium_org/remoting/host/
signaling_connector.h 82 virtual void OnGetTokensResponse(const std::string& user_email,
87 virtual void OnGetUserEmailResponse(const std::string& user_email) OVERRIDE;
  /external/chromium/chrome/browser/chromeos/login/
user_manager.cc 136 RemoveAttempt(const std::string& user_email,
138 : user_email_(user_email),
216 const std::string& user_email = email(); local
217 size_t at_pos = user_email.rfind('@');
223 std::string domain = user_email.substr(domain_start,
224 user_email.length() - domain_start);
325 std::string user_email = it->email(); local
327 if (email != user_email) {
328 prefs_users_update->Append(Value::CreateStringValue(user_email));
374 std::string user_email = it->email() local
    [all...]
  /external/chromium_org/chrome/browser/feedback/
feedback_data.h 69 const std::string& user_email() const { return user_email_; } function in class:FeedbackData
92 void set_user_email(const std::string& user_email) {
93 user_email_ = user_email;

Completed in 506 milliseconds

1 2 3