HomeSort by relevance Sort by last modified time
    Searched refs:PasswordStore (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium/chrome/browser/password_manager/
password_store.cc 18 PasswordStore::GetLoginsRequest::GetLoginsRequest(GetLoginsCallback* callback)
23 PasswordStore::GetLoginsRequest::~GetLoginsRequest() {
29 PasswordStore::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::UpdateLogin(const PasswordForm& form)
    [all...]
password_store.h 34 class PasswordStore
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's own thread wit
    [all...]
password_store_default.h 21 class PasswordStoreDefault : public PasswordStore {
31 // Implements PasswordStore interface.
password_form_manager.h 19 class PasswordStore;
23 // between a given form, the per-tab PasswordManager, and the PasswordStore.
26 // profile contains the link to the PasswordStore and whether we're off
45 // from the PasswordStore and completed its matching phase. Note that the
165 void UpdatePreferredLoginState(PasswordStore* password_store);
197 // Handle to any pending PasswordStore::GetLogins query.
220 // The profile from which we get the PasswordStore.
password_store_default.cc 22 // MigrateHelper handles migration from WebDB to PasswordStore. It runs
28 PasswordStore* password_store)
49 // This creates a cycle between us and PasswordStore. The cycle is broken
51 scoped_refptr<PasswordStore> password_store_;
133 Source<PasswordStore>(this),
144 Source<PasswordStore>(this),
155 Source<PasswordStore>(this),
173 Source<PasswordStore>(this),
password_store_default_unittest.cc 60 void Init(PasswordStore* password_store) {
83 void AddObserverTask(PasswordStore* password_store) {
87 Source<PasswordStore>(password_store));
130 BrowserThread db_thread_; // PasswordStore, WDS schedule work on this thread.
157 // Initializing the PasswordStore shouldn't trigger a migration.
185 // The PasswordStore schedules tasks to run on the DB thread so we schedule
287 // Initializing the PasswordStore should trigger a migration.
288 scoped_refptr<PasswordStore> store(
404 // Initializing the PasswordStore shouldn't trigger a migration.
405 scoped_refptr<PasswordStore> store
    [all...]
password_store_mac.h 19 // Implements PasswordStore on top of the OS X Keychain, with an internal
24 class PasswordStoreMac : public PasswordStore {
password_store_win.cc 24 class FormGetLoginsRequest : public PasswordStore::GetLoginsRequest {
26 explicit FormGetLoginsRequest(PasswordStore::GetLoginsCallback* callback)
77 // This creates a cycle between us and PasswordStore. The cycle is broken
181 PasswordStore::GetLoginsRequest* PasswordStoreWin::NewGetLoginsRequest(
201 PasswordStore::ForwardLoginsResult(request);
password_store_x.cc 37 Source<PasswordStore>(this),
52 Source<PasswordStore>(this),
67 Source<PasswordStore>(this),
91 Source<PasswordStore>(this),
password_store_win_unittest.cc 128 BrowserThread db_thread_; // PasswordStore, WDS schedule work on this thread.
174 // Initializing the PasswordStore shouldn't trigger a migration.
175 scoped_refptr<PasswordStore> store(
233 // Initializing the PasswordStore shouldn't trigger a migration.
234 scoped_refptr<PasswordStore> store(
283 // Initializing the PasswordStore shouldn't trigger a migration.
284 scoped_refptr<PasswordStore> store(
434 // Initializing the PasswordStore should trigger a migration.
435 scoped_refptr<PasswordStore> store(
516 scoped_refptr<PasswordStore> store
    [all...]
password_manager_unittest.cc 39 explicit TestingProfileWithPasswordStore(PasswordStore* store)
44 virtual PasswordStore* GetPasswordStore(ServiceAccessType access) {
48 scoped_refptr<PasswordStore> store_;
51 class MockPasswordStore : public PasswordStore {
119 // We create a UI thread to satisfy PasswordStore.
231 // No expected calls to the PasswordStore...
password_form_manager.cc 117 PasswordStore* password_store =
202 PasswordStore* password_store =
347 PasswordStore* password_store =
363 PasswordStore* password_store) {
388 PasswordStore* password_store =
  /external/chromium/chrome/browser/sync/glue/
password_model_worker.h 15 class PasswordStore;
28 explicit PasswordModelWorker(PasswordStore* password_store);
40 scoped_refptr<PasswordStore> password_store_;
password_change_processor.h 19 class PasswordStore;
35 PasswordStore* password_store,
71 PasswordStore* password_store_;
password_model_worker.cc 17 PasswordModelWorker::PasswordModelWorker(PasswordStore* password_store)
password_data_type_controller.h 17 class PasswordStore;
78 scoped_refptr<PasswordStore> password_store_;
password_model_associator.h 22 class PasswordStore;
53 PasswordStore* password_store);
128 PasswordStore* password_store_;
password_change_processor.cc 26 PasswordStore* password_store,
223 Source<PasswordStore>(password_store_));
230 Source<PasswordStore>(password_store_));
  /external/chromium/chrome/browser/ui/webui/options/
password_manager_handler.h 18 public PasswordStore::Observer {
28 // PasswordStore::Observer implementation.
38 PasswordStore* GetPasswordStore();
password_manager_handler.cc 99 PasswordStore* PasswordManagerHandler::GetPasswordStore() {
146 // list. Add PasswordStore::RemoveAllLogins().
147 PasswordStore* store = GetPasswordStore();
154 PasswordStore* store = GetPasswordStore();
202 PasswordStore* store = page_->GetPasswordStore();
231 PasswordStore* store = page_->GetPasswordStore();
  /external/chromium/chrome/browser/sync/
profile_sync_factory.h 19 class PasswordStore;
107 PasswordStore* password_store,
profile_sync_factory_impl.h 56 PasswordStore* password_store,
profile_sync_factory_mock.h 57 PasswordStore* password_store,
  /external/chromium/android/autofill/
profile_android.h 94 class PasswordStore;
165 virtual PasswordStore* GetPasswordStore(ServiceAccessType sat) { NOTREACHED(); return NULL; }
  /external/chromium/chrome/browser/profiles/
profile.h 91 class PasswordStore;
318 // Returns the PasswordStore for this profile. This is owned by the Profile.
319 virtual PasswordStore* GetPasswordStore(ServiceAccessType access) = 0;

Completed in 778 milliseconds

1 2