| 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 <ostream> | 9 #include <ostream> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.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 "components/sync/api/syncable_service.h" | 22 #include "components/sync/api/syncable_service.h" |
| 23 | 23 |
| 24 class PasswordStoreProxyMac; |
| 25 |
| 24 namespace autofill { | 26 namespace autofill { |
| 25 struct PasswordForm; | 27 struct PasswordForm; |
| 26 } | 28 } |
| 27 | 29 |
| 28 namespace syncer { | 30 namespace syncer { |
| 29 class SyncableService; | 31 class SyncableService; |
| 30 } | 32 } |
| 31 | 33 |
| 32 class PasswordStoreProxyMac; | |
| 33 | |
| 34 namespace password_manager { | 34 namespace password_manager { |
| 35 | 35 |
| 36 class AffiliatedMatchHelper; | 36 class AffiliatedMatchHelper; |
| 37 class PasswordStoreConsumer; | 37 class PasswordStoreConsumer; |
| 38 class PasswordSyncableService; | 38 class PasswordSyncableService; |
| 39 struct InteractionsStats; | 39 struct InteractionsStats; |
| 40 | 40 |
| 41 // Interface for storing form passwords in a platform-specific secure way. | 41 // Interface for storing form passwords in a platform-specific secure way. |
| 42 // The login request/manipulation API is not threadsafe and must be used | 42 // The login request/manipulation API is not threadsafe and must be used |
| 43 // from the UI thread. | 43 // from the UI thread. |
| (...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 DISALLOW_COPY_AND_ASSIGN(PasswordStore); | 501 DISALLOW_COPY_AND_ASSIGN(PasswordStore); |
| 502 }; | 502 }; |
| 503 | 503 |
| 504 // For logging only. | 504 // For logging only. |
| 505 std::ostream& operator<<(std::ostream& os, | 505 std::ostream& operator<<(std::ostream& os, |
| 506 const PasswordStore::FormDigest& digest); | 506 const PasswordStore::FormDigest& digest); |
| 507 | 507 |
| 508 } // namespace password_manager | 508 } // namespace password_manager |
| 509 | 509 |
| 510 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_STORE_H_ | 510 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_STORE_H_ |
| OLD | NEW |