| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_STORE_H_ | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_STORE_H_ |
| 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_STORE_H_ | 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_STORE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/memory/scoped_vector.h" | 15 #include "base/memory/scoped_vector.h" |
| 16 #include "base/observer_list_threadsafe.h" | 16 #include "base/observer_list_threadsafe.h" |
| 17 #include "base/single_thread_task_runner.h" | 17 #include "base/single_thread_task_runner.h" |
| 18 #include "base/time/time.h" | 18 #include "base/time/time.h" |
| 19 #include "components/keyed_service/core/refcounted_keyed_service.h" | 19 #include "components/keyed_service/core/refcounted_keyed_service.h" |
| 20 #include "components/password_manager/core/browser/password_store_change.h" | 20 #include "components/password_manager/core/browser/password_store_change.h" |
| 21 #include "components/password_manager/core/browser/password_store_sync.h" | 21 #include "components/password_manager/core/browser/password_store_sync.h" |
| 22 #include "sync/api/syncable_service.h" | 22 #include "components/sync/api/syncable_service.h" |
| 23 | 23 |
| 24 namespace autofill { | 24 namespace autofill { |
| 25 struct PasswordForm; | 25 struct PasswordForm; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace syncer { | 28 namespace syncer { |
| 29 class SyncableService; | 29 class SyncableService; |
| 30 } | 30 } |
| 31 | 31 |
| 32 class PasswordStoreProxyMac; | 32 class PasswordStoreProxyMac; |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 bool is_propagating_password_changes_to_web_credentials_enabled_; | 489 bool is_propagating_password_changes_to_web_credentials_enabled_; |
| 490 | 490 |
| 491 bool shutdown_called_; | 491 bool shutdown_called_; |
| 492 | 492 |
| 493 DISALLOW_COPY_AND_ASSIGN(PasswordStore); | 493 DISALLOW_COPY_AND_ASSIGN(PasswordStore); |
| 494 }; | 494 }; |
| 495 | 495 |
| 496 } // namespace password_manager | 496 } // namespace password_manager |
| 497 | 497 |
| 498 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_STORE_H_ | 498 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_STORE_H_ |
| OLD | NEW |