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

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

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 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 "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
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_ _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698