Searched defs:PasswordStore (Results 1 - 4 of 4) sorted by relevance

/external/chromium/chrome/browser/password_manager/
H A Dpassword_store.h34 class PasswordStore class in inherits:base::RefCountedThreadSafe,CancelableRequestProvider
35 : public base::RefCountedThreadSafe<PasswordStore>,
62 // PasswordStore::SetObserver.
72 PasswordStore();
77 // Invoked from the profiles destructor to shutdown the PasswordStore.
120 friend class base::RefCountedThreadSafe<PasswordStore>;
126 virtual ~PasswordStore();
132 // Schedule the given |task| to be run in the PasswordStore's own thread.
135 // These will be run in PasswordStore's own thread.
169 // Schedule the given |func| to be run in the PasswordStore'
[all...]
H A Dpassword_store.cc18 PasswordStore::GetLoginsRequest::GetLoginsRequest(GetLoginsCallback* callback)
23 PasswordStore::GetLoginsRequest::~GetLoginsRequest() {
29 PasswordStore::PasswordStore() { function in class:PasswordStore
32 bool PasswordStore::Init() {
37 void PasswordStore::Shutdown() {
40 void PasswordStore::AddLogin(const PasswordForm& form) {
41 Task* task = NewRunnableMethod(this, &PasswordStore::AddLoginImpl, form);
43 NewRunnableMethod(this, &PasswordStore::WrapModificationTask, task));
46 void PasswordStore
[all...]
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_store.h19 class PasswordStore;
35 void AddLogin(PasswordStore* store, const content::PasswordForm& form);
36 void RemoveLogin(PasswordStore* store, const content::PasswordForm& form);
37 void UpdateLogin(PasswordStore* store, const content::PasswordForm& form);
43 class PasswordStore class in inherits:RefcountedBrowserContextKeyedService,CancelableRequestProvider
79 // PasswordStore::SetObserver.
89 PasswordStore();
135 friend class base::RefCountedThreadSafe<PasswordStore>;
140 friend void passwords_helper::AddLogin(PasswordStore*,
142 friend void passwords_helper::RemoveLogin(PasswordStore*,
[all...]
H A Dpassword_store.cc63 PasswordStore::GetLoginsRequest::GetLoginsRequest(
68 void PasswordStore::GetLoginsRequest::ApplyIgnoreLoginsCutoff() {
83 PasswordStore::GetLoginsRequest::~GetLoginsRequest() {
89 PasswordStore::PasswordStore() { function in class:PasswordStore
92 bool PasswordStore::Init() {
97 void PasswordStore::AddLogin(const PasswordForm& form) {
98 ScheduleTask(base::Bind(&PasswordStore::WrapModificationTask, this,
99 base::Closure(base::Bind(&PasswordStore::AddLoginImpl, this, form))));
102 void PasswordStore
[all...]

Completed in 1994 milliseconds