Searched defs:email (Results 1 - 25 of 159) sorted by relevance

1234567

/external/chromium_org/chrome/common/cloud_print/
H A Dcloud_print_proxy_info.h18 std::string email; member in struct:cloud_print::CloudPrintProxyInfo
/external/chromium_org/tools/telemetry/telemetry/core/chrome/chromeos_login_ext/
H A Dmain.js14 'email': 'test@test.test',
/external/chromium_org/jingle/notifier/base/
H A Dnotifier_options_util.cc17 const std::string& email, const std::string& token) {
18 buzz::Jid jid = buzz::Jid(email);
15 MakeXmppClientSettings( const NotifierOptions& notifier_options, const std::string& email, const std::string& token) argument
/external/chromium/chrome/browser/sync/util/
H A Duser_settings_posix.cc16 const std::string& email,
21 << " for " << email << "for service " << service_name;
33 "(email, service_name, service_token) "
35 statement.bind_string(0, email);
50 "SELECT email, service_token FROM cookies"
15 SetAuthTokenForService( const std::string& email, const std::string& service_name, const std::string& long_lived_service_token) argument
H A Duser_settings_win.cc18 void UserSettings::SetAuthTokenForService(const string& email, argument
24 "(email, service_name, service_token) "
26 statement.bind_string(0, email);
42 "SELECT email, service_token FROM cookies"
/external/chromium/chrome/browser/ui/webui/options/chromeos/
H A Duser_image_source.cc17 const std::string& email) const {
21 if (users[i].email() == email) {
45 std::string email = path.substr(0, path.find_first_of("?")); local
46 SendResponse(request_id, new RefCountedBytes(GetUserImage(email)));
H A Daccounts_options_handler.cc80 std::string email; local
81 if (!args->GetString(0, &email)) {
85 users_settings()->WhitelistUser(Authenticator::Canonicalize(email));
89 std::string email; local
90 if (!args->GetString(0, &email)) {
94 users_settings()->UnwhitelistUser(Authenticator::Canonicalize(email));
95 UserManager::Get()->RemoveUser(email, NULL);
105 new StringValue(chrome::kChromeUIUserImageURL + it->email());
106 // SetWithoutPathExpansion because email has "." in it.
107 user_pictures.SetWithoutPathExpansion(it->email(), image_ur
120 const std::string& email = it->email(); local
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DIntentHelper.java31 * Triggers a send email intent. If no application has registered to receive these intents,
35 * @param email The email address to send to.
36 * @param subject The subject of the email.
37 * @param body The body of the email.
42 static void sendEmail(Context context, String email, String subject, String body, argument
46 if (!TextUtils.isEmpty(email)) {
47 possibleEmails.add(email);
/external/chromium_org/chrome/browser/chromeos/login/
H A Dmock_user_manager.cc37 void MockUserManager::SetActiveUser(const std::string& email) { argument
39 user_ = User::CreateRegularUser(email);
50 User* MockUserManager::CreatePublicAccountUser(const std::string& email) { argument
52 user_ = User::CreatePublicAccountUser(email);
/external/chromium_org/sync/internal_api/public/
H A Dsync_manager.h62 // The email associated with this account.
63 std::string email; member in struct:syncer::SyncCredentials
/external/llvm/utils/
H A Dwciia.py63 email = line[2:].strip() variable
64 code_owner['email'] = email
/external/protobuf/examples/
H A Dadd_person.cc20 cout << "Enter email address (blank for none): ";
21 string email; local
22 getline(cin, email);
23 if (!email.empty()) {
24 person->set_email(email);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-javamail.jar ... org/apache/tools/ant/taskdefs/ org/apache/tools/ant/taskdefs/email/ org/apache/tools/ant/taskdefs/email/MimeMailer$SimpleAuthenticator. ...
/external/chromium/chrome/browser/
H A Dplatform_util_linux.cc48 void XDGEmail(const std::string& email) { argument
49 XDGUtil("xdg-email", email);
/external/chromium_org/chrome/browser/
H A Dplatform_util_linux.cc51 void XDGEmail(const std::string& email) { argument
52 XDGUtil("xdg-email", email);
/external/chromium_org/chrome/browser/signin/
H A Dsignin_names_io_thread.cc27 // Get list of profiles and record the email addresses of any connected
34 string16 email = cache.GetUserNameOfProfileAtIndex(i); local
35 if (!email.empty())
36 emails_.insert(email);
92 const string16& email) {
94 UpdateOnIOThread(type, email);
100 base::Unretained(this), type, email));
107 const string16& email) {
110 emails_.insert(email);
112 emails_.erase(email);
90 PostTaskToIOThread( int type, const string16& email) argument
105 UpdateOnIOThread( int type, const string16& email) argument
[all...]
/external/chromium_org/google_apis/gaia/
H A Dgaia_auth_util.cc59 std::string email = CanonicalizeEmail(email_address); local
60 size_t separator_pos = email.find('@');
61 if (separator_pos != email.npos && separator_pos < email.length() - 1)
62 return email.substr(separator_pos + 1);
64 NOTREACHED() << "Not a proper email address: " << email;
/external/chromium/chrome/browser/chromeos/login/
H A Dsigned_settings_helper.h28 // or not. |email| is the email that is checked against.
31 const std::string& email) {}
33 // Callback of WhitelistOp that adds |email| to the whitelist.
35 SignedSettings::ReturnCode code, const std::string& email) {}
37 // Callback of WhitelistOp that removes |email| to the whitelist.
39 SignedSettings::ReturnCode code, const std::string& email) {}
67 virtual void StartCheckWhitelistOp(const std::string& email,
69 virtual void StartWhitelistOp(const std::string& email,
29 OnCheckWhitelistCompleted( SignedSettings::ReturnCode code, const std::string& email) argument
34 OnWhitelistCompleted( SignedSettings::ReturnCode code, const std::string& email) argument
38 OnUnwhitelistCompleted( SignedSettings::ReturnCode code, const std::string& email) argument
H A Duser_manager.h42 // The email the user used to log in.
43 void set_email(const std::string& email) { email_ = email; } argument
44 const std::string& email() const { return email_; } function in class:chromeos::UserManager::User
49 // Tooltip contains user's display name and his email domain to distinguish
76 // Indicates that a user with the given email has just logged in.
78 virtual void UserLoggedIn(const std::string& email);
83 virtual void RemoveUser(const std::string& email,
88 virtual void RemoveUserFromList(const std::string& email);
91 virtual bool IsKnownUser(const std::string& email);
[all...]
/external/chromium/chrome/browser/service/
H A Dservice_process_control_browsertest.cc63 bool enabled, std::string email) {
62 CloudPrintStatusCallback( bool enabled, std::string email) argument
/external/chromium/chrome/browser/sync/notifier/
H A Dinvalidation_notifier.cc56 const std::string& email, const std::string& token) {
58 VLOG(1) << "Updating credentials for " << email;
61 email, token, SYNC_SERVICE_NAME);
55 UpdateCredentials( const std::string& email, const std::string& token) argument
H A Dp2p_notifier.cc62 const std::string& email, const std::string& token) {
66 talk_mediator_->SetAuthToken(email, token, SYNC_SERVICE_NAME);
69 LOG(DFATAL) << "Could not login for " << email;
78 subscription.from = email;
61 UpdateCredentials( const std::string& email, const std::string& token) argument
/external/chromium/chrome/browser/sync/tools/
H A Dsync_listen_notifications.cc78 std::string email = command_line.GetSwitchValueASCII("email"); local
81 // email and password and passes that in to this utility.
82 if (email.empty() || token.empty()) {
83 std::printf("Usage: %s --email=foo@bar.com --token=token\n\n"
104 sync_notifier->UpdateCredentials(email, token);
/external/chromium_org/chrome/browser/net/gaia/
H A Dgaia_oauth_consumer.h32 virtual void OnUserInfoSuccess(const std::string& email) {} argument
/external/chromium_org/chrome/browser/resources/gaia_auth/
H A Dmain.js41 this.inputEmail_ = params['email'];
87 this.email_ = msg.email;
99 'email': this.email_,

Completed in 399 milliseconds

1234567