| 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 <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/threading/non_thread_safe.h" | 13 #include "base/threading/non_thread_safe.h" |
| 13 #include "components/password_manager/core/browser/password_store_change.h" | 14 #include "components/password_manager/core/browser/password_store_change.h" |
| 14 #include "sync/api/sync_change.h" | 15 #include "sync/api/sync_change.h" |
| 15 #include "sync/api/sync_data.h" | 16 #include "sync/api/sync_data.h" |
| 16 #include "sync/api/sync_error.h" | 17 #include "sync/api/sync_error.h" |
| 17 #include "sync/api/syncable_service.h" | 18 #include "sync/api/syncable_service.h" |
| 18 #include "sync/protocol/password_specifics.pb.h" | 19 #include "sync/protocol/password_specifics.pb.h" |
| 19 #include "sync/protocol/sync.pb.h" | 20 #include "sync/protocol/sync.pb.h" |
| 20 | 21 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 115 |
| 115 // True if processing sync changes is in progress. | 116 // True if processing sync changes is in progress. |
| 116 bool is_processing_sync_changes_; | 117 bool is_processing_sync_changes_; |
| 117 | 118 |
| 118 DISALLOW_COPY_AND_ASSIGN(PasswordSyncableService); | 119 DISALLOW_COPY_AND_ASSIGN(PasswordSyncableService); |
| 119 }; | 120 }; |
| 120 | 121 |
| 121 } // namespace password_manager | 122 } // namespace password_manager |
| 122 | 123 |
| 123 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_SYNCABLE_SERVICE_H_
_ | 124 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_SYNCABLE_SERVICE_H_
_ |
| OLD | NEW |