OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PasswordForm
(Results
101 - 125
of
197
) sorted by null
1
2
3
4
5
6
7
8
/external/chromium/chrome/browser/password_manager/
password_store.cc
16
using webkit_glue::
PasswordForm
;
20
std::vector<webkit_glue::
PasswordForm
*> >(callback) {
40
void PasswordStore::AddLogin(const
PasswordForm
& form) {
46
void PasswordStore::UpdateLogin(const
PasswordForm
& form) {
52
void PasswordStore::RemoveLogin(const
PasswordForm
& form) {
68
const
PasswordForm
& form, PasswordStoreConsumer* consumer) {
native_backend_gnome_x.cc
23
using webkit_glue::
PasswordForm
;
143
// Convert the attributes of a given keyring entry into a new
PasswordForm
.
146
PasswordForm
* FormFromAttributes(GnomeKeyringAttributeList* attrs) {
161
PasswordForm
* form = new
PasswordForm
();
177
form->scheme = static_cast<
PasswordForm
::Scheme>(uint_attr_map["scheme"]);
192
PasswordForm
* form = FormFromAttributes(attrs);
201
LOG(WARNING) << "Could not initialize
PasswordForm
from attributes!";
208
// Schema is analagous to the fields in
PasswordForm
.
252
void AddLogin(const
PasswordForm
& form)
[
all
...]
/external/chromium/chrome/browser/importer/
nss_decryptor_mac.h
109
struct
PasswordForm
;
133
std::vector<webkit_glue::
PasswordForm
>* forms);
139
std::vector<webkit_glue::
PasswordForm
>* forms);
nss_decryptor_win.h
108
struct
PasswordForm
;
133
std::vector<webkit_glue::
PasswordForm
>* forms);
139
std::vector<webkit_glue::
PasswordForm
>* forms);
profile_import_process_host.h
23
struct
PasswordForm
;
profile_import_process_client.h
28
struct
PasswordForm
;
71
const webkit_glue::
PasswordForm
& form);
profile_writer.h
23
struct
PasswordForm
;
70
virtual void AddPasswordForm(const webkit_glue::
PasswordForm
& form);
importer_bridge.h
46
virtual void SetPasswordForm(const webkit_glue::
PasswordForm
& form) = 0;
nss_decryptor.cc
114
std::vector<webkit_glue::
PasswordForm
>* forms) {
143
webkit_glue::
PasswordForm
form;
165
webkit_glue::
PasswordForm
form;
235
std::vector<webkit_glue::
PasswordForm
>* forms) {
252
webkit_glue::
PasswordForm
form;
283
webkit_glue::
PasswordForm
form;
/external/chromium_org/chrome/utility/importer/
nss_decryptor_mac.h
111
struct
PasswordForm
;
135
std::vector<content::
PasswordForm
>* forms);
141
std::vector<content::
PasswordForm
>* forms);
nss_decryptor_win.h
108
struct
PasswordForm
;
133
std::vector<content::
PasswordForm
>* forms);
139
std::vector<content::
PasswordForm
>* forms);
nss_decryptor.cc
115
std::vector<content::
PasswordForm
>* forms) {
144
content::
PasswordForm
form;
166
content::
PasswordForm
form;
236
std::vector<content::
PasswordForm
>* forms) {
253
content::
PasswordForm
form;
284
content::
PasswordForm
form;
/external/chromium_org/chrome/browser/password_manager/
native_backend_gnome_x.cc
25
using content::
PasswordForm
;
94
// Convert the attributes of a given keyring entry into a new
PasswordForm
.
97
PasswordForm
* FormFromAttributes(GnomeKeyringAttributeList* attrs) {
113
PasswordForm
* form = new
PasswordForm
();
129
form->scheme = static_cast<
PasswordForm
::Scheme>(uint_attr_map["scheme"]);
144
PasswordForm
* form = FormFromAttributes(attrs);
153
LOG(WARNING) << "Could not initialize
PasswordForm
from attributes!";
160
// Schema is analagous to the fields in
PasswordForm
.
205
void AddLogin(const
PasswordForm
& form, const char* app_string)
[
all
...]
password_generation_manager.h
21
struct
PasswordForm
;
89
const content::
PasswordForm
& form);
password_store_default_unittest.cc
31
using content::
PasswordForm
;
45
const std::vector<
PasswordForm
*>&));
47
void(const std::vector<
PasswordForm
*>&));
146
{
PasswordForm
::SCHEME_HTML,
159
std::vector<
PasswordForm
*> expected_forms;
161
PasswordForm
* form = CreatePasswordFormFromData(form_data[i]);
199
{
PasswordForm
::SCHEME_HTML,
209
scoped_ptr<
PasswordForm
> form(CreatePasswordFormFromData(form_data));
native_backend_kwallet_x_unittest.cc
32
using content::
PasswordForm
;
158
void CheckPasswordForm(const
PasswordForm
& expected,
159
const
PasswordForm
& actual);
161
PasswordForm
form_google_;
162
PasswordForm
form_isc_;
166
const
PasswordForm
& expected, const
PasswordForm
& actual) {
211
std::vector<const
PasswordForm
*> > > ExpectationArray;
453
std::vector<
PasswordForm
*> forms;
455
const std::vector<const
PasswordForm
*>& expect = sorted_expected[i].second
[
all
...]
/external/chromium/chrome/common/
autofill_messages.h
76
std::vector<webkit_glue::
PasswordForm
> /* forms */)
81
std::vector<webkit_glue::
PasswordForm
> /* forms */)
/external/chromium_org/chrome/browser/ui/cocoa/browser/
password_generation_bubble_controller.h
44
content::
PasswordForm
form_;
57
forForm:(const content::
PasswordForm
&)form;
/external/chromium_org/chrome/browser/ui/views/
password_generation_bubble_view.h
42
PasswordGenerationBubbleView(const content::
PasswordForm
& form,
83
content::
PasswordForm
form_;
/external/chromium_org/chrome/common/importer/
importer_bridge.h
31
struct
PasswordForm
;
64
virtual void SetPasswordForm(const content::
PasswordForm
& form) = 0;
/external/chromium/chrome/browser/webdata/
web_data_service.h
49
struct
PasswordForm
;
75
PASSWORD_RESULT, // WDResult<std::vector<
PasswordForm
*>>
380
void AddLogin(const webkit_glue::
PasswordForm
& form);
383
void UpdateLogin(const webkit_glue::
PasswordForm
& form);
386
void RemoveLogin(const webkit_glue::
PasswordForm
& form);
397
// type WDResult<std::vector<
PasswordForm
*>>.
398
// The result will be null on failure. The |consumer| owns all
PasswordForm
's.
399
Handle GetLogins(const webkit_glue::
PasswordForm
& form,
405
// type WDResult<std::vector<
PasswordForm
*>>.
411
// type WDResult<std::vector<
PasswordForm
*>>
[
all
...]
/external/chromium_org/components/autofill/core/common/
autofill_messages.h
162
content::
PasswordForm
/* form checked */)
205
std::vector<content::
PasswordForm
> /* forms */)
210
std::vector<content::
PasswordForm
> /* forms */)
276
content::
PasswordForm
)
password_form_fill_data.cc
33
const content::
PasswordForm
& form_on_page,
35
const content::
PasswordForm
* const preferred_match,
/external/chromium_org/content/public/renderer/
document_state.h
21
struct
PasswordForm
;
165
// If set, contains the
PasswordForm
that we believe triggered the current
174
PasswordForm
* password_form_data() const {
177
void set_password_form_data(scoped_ptr<
PasswordForm
> data);
223
scoped_ptr<
PasswordForm
> password_form_data_;
/external/chromium_org/chrome/browser/importer/
external_process_importer_client.h
27
struct
PasswordForm
;
75
void OnPasswordFormImportReady(const content::
PasswordForm
& form);
Completed in 510 milliseconds
1
2
3
4
5
6
7
8