Searched defs:PasswordStore (Results 1 - 2 of 2) 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...]

Completed in 184 milliseconds