Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1298)

Side by Side Diff: components/password_manager/core/browser/password_syncable_service.h

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "sync/api/sync_change.h" 15 #include "components/sync/api/sync_change.h"
16 #include "sync/api/sync_data.h" 16 #include "components/sync/api/sync_data.h"
17 #include "sync/api/sync_error.h" 17 #include "components/sync/api/sync_error.h"
18 #include "sync/api/syncable_service.h" 18 #include "components/sync/api/syncable_service.h"
19 #include "sync/protocol/password_specifics.pb.h" 19 #include "components/sync/protocol/password_specifics.pb.h"
20 #include "sync/protocol/sync.pb.h" 20 #include "components/sync/protocol/sync.pb.h"
21 21
22 template <typename T> 22 template <typename T>
23 class ScopedVector; 23 class ScopedVector;
24 24
25 namespace autofill { 25 namespace autofill {
26 struct PasswordForm; 26 struct PasswordForm;
27 } 27 }
28 28
29 namespace syncer { 29 namespace syncer {
30 class SyncErrorFactory; 30 class SyncErrorFactory;
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 115
116 // True if processing sync changes is in progress. 116 // True if processing sync changes is in progress.
117 bool is_processing_sync_changes_; 117 bool is_processing_sync_changes_;
118 118
119 DISALLOW_COPY_AND_ASSIGN(PasswordSyncableService); 119 DISALLOW_COPY_AND_ASSIGN(PasswordSyncableService);
120 }; 120 };
121 121
122 } // namespace password_manager 122 } // namespace password_manager
123 123
124 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_SYNCABLE_SERVICE_H_ _ 124 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_SYNCABLE_SERVICE_H_ _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698