HomeSort by relevance Sort by last modified time
    Searched refs:PasswordForm (Results 26 - 50 of 210) sorted by null

12 3 4 5 6 7 8 9

  /external/chromium_org/chrome/browser/password_manager/
password_form_manager.h 38 const autofill::PasswordForm& observed_form,
54 bool DoesManage(const autofill::PasswordForm& form,
82 // a SavePasswordBar when given the green light to save the PasswordForm
101 void OnRequestDone(const std::vector<autofill::PasswordForm*>& result);
106 const std::vector<autofill::PasswordForm*>& result) OVERRIDE;
108 const std::vector<autofill::PasswordForm*>& results) OVERRIDE;
122 void ProvisionallySave(const autofill::PasswordForm& credentials,
142 const autofill::PasswordForm pending_credentials() const {
202 bool IgnoreResult(const autofill::PasswordForm& form) const;
212 int ScoreResult(const autofill::PasswordForm& form) const
    [all...]
login_database.h 19 struct PasswordForm;
38 bool AddLogin(const autofill::PasswordForm& form);
42 bool UpdateLogin(const autofill::PasswordForm& form, int* items_changed);
45 bool RemoveLogin(const autofill::PasswordForm& form);
56 bool GetLogins(const autofill::PasswordForm& form,
57 std::vector<autofill::PasswordForm*>* forms) const;
65 std::vector<autofill::PasswordForm*>* forms) const;
70 std::vector<autofill::PasswordForm*>* forms) const;
74 std::vector<autofill::PasswordForm*>* forms) const;
121 EncryptionResult InitPasswordFormFromStatement(autofill::PasswordForm* form
    [all...]
password_store_x.h 35 typedef std::vector<autofill::PasswordForm*> PasswordFormList;
41 virtual bool AddLogin(const autofill::PasswordForm& form) = 0;
42 virtual bool UpdateLogin(const autofill::PasswordForm& form) = 0;
43 virtual bool RemoveLogin(const autofill::PasswordForm& form) = 0;
46 virtual bool GetLogins(const autofill::PasswordForm& form,
80 virtual void AddLoginImpl(const autofill::PasswordForm& form) OVERRIDE;
82 const autofill::PasswordForm& form) OVERRIDE;
84 const autofill::PasswordForm& form) OVERRIDE;
88 const autofill::PasswordForm& form,
94 std::vector<autofill::PasswordForm*>* forms) OVERRIDE
    [all...]
password_store.h 25 struct PasswordForm;
36 void AddLogin(PasswordStore* store, const autofill::PasswordForm& form);
37 void RemoveLogin(PasswordStore* store, const autofill::PasswordForm& form);
38 void UpdateLogin(PasswordStore* store, const autofill::PasswordForm& form);
49 void(Handle, const std::vector<autofill::PasswordForm*>&)>
59 // PasswordForm vector elements are meant to be owned by the
64 std::vector<autofill::PasswordForm*> > {
102 // Adds the given PasswordForm to the secure password store asynchronously.
103 virtual void AddLogin(const autofill::PasswordForm& form);
105 // Updates the matching PasswordForm in the secure password store (async)
    [all...]
password_form_data.cc 9 using autofill::PasswordForm;
11 PasswordForm* CreatePasswordFormFromData(
13 PasswordForm* form = new PasswordForm();
40 typedef std::set<const autofill::PasswordForm*> SetOfForms;
43 const std::vector<PasswordForm*>& first,
44 const std::vector<PasswordForm*>& second) {
56 const PasswordForm* actual = second[i];
60 const PasswordForm* expected = *it;
76 std::vector<autofill::PasswordForm>& first
    [all...]
password_manager.h 49 typedef base::Callback<void(const autofill::PasswordForm&)>
64 virtual void Autofill(const autofill::PasswordForm& form_for_autofill,
66 const autofill::PasswordForm& preferred_match,
74 void SetFormHasGeneratedPassword(const autofill::PasswordForm& form);
81 void ProvisionallySavePassword(const autofill::PasswordForm& form);
92 const std::vector<autofill::PasswordForm>& forms);
94 const std::vector<autofill::PasswordForm>& visible_forms);
103 const autofill::PasswordForm& password_form);
native_backend_gnome_x.h 21 struct PasswordForm;
76 virtual bool AddLogin(const autofill::PasswordForm& form) OVERRIDE;
77 virtual bool UpdateLogin(const autofill::PasswordForm& form) OVERRIDE;
78 virtual bool RemoveLogin(const autofill::PasswordForm& form) OVERRIDE;
81 virtual bool GetLogins(const autofill::PasswordForm& form,
91 bool RawAddLogin(const autofill::PasswordForm& form);
password_manager_unittest.cc 26 using autofill::PasswordForm;
58 virtual void OnPasswordFormSubmitted(const PasswordForm& form) OVERRIDE {
96 PasswordForm MakeSimpleForm() {
97 PasswordForm form;
112 PasswordForm MakeTwitterLoginForm() {
113 PasswordForm form;
127 PasswordForm MakeTwitterFailedLoginForm() {
128 PasswordForm form;
142 bool FormsAreEqual(const autofill::PasswordForm& lhs,
143 const autofill::PasswordForm& rhs)
    [all...]
password_store_mac_unittest.cc 21 using autofill::PasswordForm;
34 const std::vector<autofill::PasswordForm*>&));
36 void(const std::vector<autofill::PasswordForm*>&));
131 const PasswordForm::Scheme scheme;
145 // Creates and returns a new PasswordForm built from form_data. Caller is
147 static PasswordForm* CreatePasswordFormFromData(
149 PasswordForm* form = new PasswordForm();
185 const std::vector<PasswordForm*>& forms,
199 PasswordForm* form = forms[i]
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_store_consumer.h 12 struct PasswordForm;
28 const std::vector<webkit_glue::PasswordForm*>& result) = 0;
password_form_manager.h 34 const webkit_glue::PasswordForm& observed_form,
39 bool DoesManage(const webkit_glue::PasswordForm& form) const;
62 // a SavePasswordBar when given the green light to save the PasswordForm
72 int handle, const std::vector<webkit_glue::PasswordForm*>& result);
77 const std::vector<webkit_glue::PasswordForm*>& result);
86 void ProvisionallySave(const webkit_glue::PasswordForm& credentials);
143 bool IgnoreResult(const webkit_glue::PasswordForm& form) const;
153 int ScoreResult(const webkit_glue::PasswordForm& form) const;
179 // The PasswordForm from the page or dialog managed by this.
180 webkit_glue::PasswordForm observed_form_
    [all...]
password_store.h 28 struct PasswordForm;
39 const std::vector<webkit_glue::PasswordForm*>&>::Type
42 // PasswordForm vector elements are meant to be owned by the
45 // TODO(scr) If we can convert vector<PasswordForm*> to
46 // ScopedVector<PasswordForm>, then we can move the following class to merely
51 GetLoginsCallback, std::vector<webkit_glue::PasswordForm*> > {
80 // Adds the given PasswordForm to the secure password store asynchronously.
81 virtual void AddLogin(const webkit_glue::PasswordForm& form);
83 // Updates the matching PasswordForm in the secure password store (async).
84 void UpdateLogin(const webkit_glue::PasswordForm& form)
    [all...]
password_store_mac_unittest.cc 22 using webkit_glue::PasswordForm;
33 const std::vector<webkit_glue::PasswordForm*>&));
130 const PasswordForm::Scheme scheme;
144 // Creates and returns a new PasswordForm built from form_data. Caller is
146 static PasswordForm* CreatePasswordFormFromData(
148 PasswordForm* form = new PasswordForm();
184 const std::vector<PasswordForm*>& forms,
198 PasswordForm* form = forms[i];
230 const PasswordForm::Scheme scheme
    [all...]
password_manager_unittest.cc 21 using webkit_glue::PasswordForm;
53 MOCK_METHOD1(RemoveLogin, void(const PasswordForm&));
54 MOCK_METHOD2(GetLogins, int(const PasswordForm&, PasswordStoreConsumer*));
55 MOCK_METHOD1(AddLogin, void(const PasswordForm&));
56 MOCK_METHOD1(UpdateLogin, void(const PasswordForm&));
59 MOCK_METHOD1(AddLoginImpl, void(const PasswordForm&));
60 MOCK_METHOD1(UpdateLoginImpl, void(const PasswordForm&));
61 MOCK_METHOD1(RemoveLoginImpl, void(const PasswordForm&));
64 MOCK_METHOD2(GetLoginsImpl, void(GetLoginsRequest*, const PasswordForm&));
68 bool(std::vector<webkit_glue::PasswordForm*>*));
    [all...]
password_form_data.cc 9 using webkit_glue::PasswordForm;
11 PasswordForm* CreatePasswordFormFromData(
13 PasswordForm* form = new PasswordForm();
40 bool operator==(const PasswordForm& lhs, const PasswordForm& rhs) {
56 std::ostream& operator<<(std::ostream& os, const PasswordForm& form) {
72 typedef std::set<const webkit_glue::PasswordForm*> SetOfForms;
75 const std::vector<PasswordForm*>& first,
76 const std::vector<PasswordForm*>& second)
    [all...]
password_store_mac.cc 25 using webkit_glue::PasswordForm;
221 // Returns the PasswordForm Scheme corresponding to |auth_type|.
222 PasswordForm::Scheme SchemeForAuthType(SecAuthenticationType auth_type) {
224 case kSecAuthenticationTypeHTMLForm: return PasswordForm::SCHEME_HTML;
225 case kSecAuthenticationTypeHTTPBasic: return PasswordForm::SCHEME_BASIC;
226 case kSecAuthenticationTypeHTTPDigest: return PasswordForm::SCHEME_DIGEST;
227 default: return PasswordForm::SCHEME_OTHER;
233 PasswordForm* form) {
338 if (form->scheme != PasswordForm::SCHEME_HTML) {
344 bool FormsMatchForMerge(const PasswordForm& form_a
    [all...]
  /external/chromium_org/components/autofill/content/renderer/
password_form_conversion_utils.cc 18 scoped_ptr<PasswordForm> InitPasswordFormFromWebPasswordForm(
21 PasswordForm* password_form = new PasswordForm();
39 password_form->scheme = PasswordForm::SCHEME_HTML;
43 password_form->type = PasswordForm::TYPE_MANUAL;
50 return scoped_ptr<PasswordForm>(password_form);
55 scoped_ptr<PasswordForm> CreatePasswordForm(const WebFormElement& webform) {
59 return scoped_ptr<PasswordForm>();
  /external/chromium_org/chrome/browser/sync/test/integration/
passwords_helper.h 22 void AddLogin(PasswordStore* store, const autofill::PasswordForm& form);
26 void UpdateLogin(PasswordStore* store, const autofill::PasswordForm& form);
32 std::vector<autofill::PasswordForm>& matches);
36 void RemoveLogin(PasswordStore* store, const autofill::PasswordForm& form);
82 autofill::PasswordForm CreateTestPasswordForm(int index);
passwords_helper.cc 22 using autofill::PasswordForm;
40 explicit PasswordStoreConsumerHelper(std::vector<PasswordForm>* result)
46 const std::vector<PasswordForm*>& result) OVERRIDE {
52 const std::vector<PasswordForm*>& result) OVERRIDE {
54 for (std::vector<PasswordForm*>::const_iterator it = result.begin();
66 std::vector<PasswordForm>* result_;
75 void AddLogin(PasswordStore* store, const PasswordForm& form) {
83 void UpdateLogin(PasswordStore* store, const PasswordForm& form) {
91 void GetLogins(PasswordStore* store, std::vector<PasswordForm>& matches) {
93 PasswordForm matcher_form
    [all...]
  /external/chromium_org/components/autofill/core/common/
password_form.cc 13 PasswordForm::PasswordForm()
23 PasswordForm::~PasswordForm() {
26 bool PasswordForm::IsPublicSuffixMatch() const {
30 bool PasswordForm::operator==(const PasswordForm& form) const {
52 bool PasswordForm::operator!=(const PasswordForm& form) const {
56 std::ostream& operator<<(std::ostream& os, const PasswordForm& form)
    [all...]
password_form.h 18 // The PasswordForm struct encapsulates information about a login form,
22 // metdata using a PasswordForm struct, typically one that was created from
27 // PasswordForm entries against PasswordForms that were created from a parsed
33 // about a particular "saved password entry" to our PasswordForm
40 struct PasswordForm {
77 // fashion) whether or not a given PasswordForm result from the database is a
94 // of PasswordForm results from the database to make matches as tight as
140 // SSL cert. We will never match or autofill a PasswordForm where
141 // ssl_valid == true with a PasswordForm where ssl_valid == false. This means
148 // True if this PasswordForm represents the last username/password login th
    [all...]
  /external/chromium_org/chrome/browser/ui/passwords/
password_manager_presenter.h 17 struct PasswordForm;
42 const autofill::PasswordForm& GetPassword(size_t index);
45 const autofill::PasswordForm& GetPasswordException(size_t index);
98 const std::vector<autofill::PasswordForm*>& result) OVERRIDE;
100 const std::vector<autofill::PasswordForm*>& results) OVERRIDE;
114 const std::vector<autofill::PasswordForm*>& result) OVERRIDE;
116 const std::vector<autofill::PasswordForm*>& results) OVERRIDE;
123 ScopedVector<autofill::PasswordForm> password_list_;
124 ScopedVector<autofill::PasswordForm> password_exception_list_;
manage_passwords_bubble_model.h 41 void OnPasswordAction(autofill::PasswordForm password_form, bool remove);
47 void DeleteFromBestMatches(autofill::PasswordForm password_form);
55 const autofill::PasswordForm& pending_credentials() {
70 autofill::PasswordForm pending_credentials_;
password_manager_presenter_unittest.cc 31 void(const ScopedVector<autofill::PasswordForm>&, bool));
33 void(const ScopedVector<autofill::PasswordForm>&));
78 autofill::PasswordForm* form = new autofill::PasswordForm();
89 autofill::PasswordForm* form = new autofill::PasswordForm();
106 Property(&ScopedVector<autofill::PasswordForm>::size, Eq(0u)),
110 &ScopedVector<autofill::PasswordForm>::size, Eq(0u))));
117 Property(&ScopedVector<autofill::PasswordForm>::size, Eq(1u)),
121 &ScopedVector<autofill::PasswordForm>::size, Eq(0u))))
    [all...]
  /external/chromium_org/chrome/utility/importer/
nss_decryptor_null.h 15 struct PasswordForm;
32 std::vector<autofill::PasswordForm>* forms) {}
34 std::vector<autofill::PasswordForm>* forms) {

Completed in 547 milliseconds

12 3 4 5 6 7 8 9