| 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_SYNCABLE_SERVICE_H__ | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_SYNCABLE_SERVICE_H__ |
| 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_SYNCABLE_SERVICE_H__ | 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_SYNCABLE_SERVICE_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/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/threading/non_thread_safe.h" | 13 #include "base/threading/non_thread_safe.h" |
| 14 #include "components/password_manager/core/browser/password_store_change.h" | 14 #include "components/password_manager/core/browser/password_store_change.h" |
| 15 #include "components/sync/api/sync_change.h" | 15 #include "components/sync/model/sync_change.h" |
| 16 #include "components/sync/api/sync_data.h" | 16 #include "components/sync/model/sync_data.h" |
| 17 #include "components/sync/api/sync_error.h" | 17 #include "components/sync/model/sync_error.h" |
| 18 #include "components/sync/api/syncable_service.h" | 18 #include "components/sync/model/syncable_service.h" |
| 19 #include "components/sync/protocol/password_specifics.pb.h" | 19 #include "components/sync/protocol/password_specifics.pb.h" |
| 20 #include "components/sync/protocol/sync.pb.h" | 20 #include "components/sync/protocol/sync.pb.h" |
| 21 | 21 |
| 22 namespace autofill { | 22 namespace autofill { |
| 23 struct PasswordForm; | 23 struct PasswordForm; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace syncer { | 26 namespace syncer { |
| 27 class SyncErrorFactory; | 27 class SyncErrorFactory; |
| 28 } | 28 } |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 | 112 |
| 113 // True if processing sync changes is in progress. | 113 // True if processing sync changes is in progress. |
| 114 bool is_processing_sync_changes_; | 114 bool is_processing_sync_changes_; |
| 115 | 115 |
| 116 DISALLOW_COPY_AND_ASSIGN(PasswordSyncableService); | 116 DISALLOW_COPY_AND_ASSIGN(PasswordSyncableService); |
| 117 }; | 117 }; |
| 118 | 118 |
| 119 } // namespace password_manager | 119 } // namespace password_manager |
| 120 | 120 |
| 121 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_SYNCABLE_SERVICE_H_
_ | 121 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_SYNCABLE_SERVICE_H_
_ |
| OLD | NEW |