OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_SYNC_ENGINE_PROCESS_UPDATES_COMMAND_H_ | 5 #ifndef CHROME_BROWSER_SYNC_ENGINE_PROCESS_UPDATES_COMMAND_H_ |
6 #define CHROME_BROWSER_SYNC_ENGINE_PROCESS_UPDATES_COMMAND_H_ | 6 #define CHROME_BROWSER_SYNC_ENGINE_PROCESS_UPDATES_COMMAND_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "chrome/browser/sync/engine/model_changing_syncer_command.h" | 10 #include "chrome/browser/sync/engine/model_changing_syncer_command.h" |
11 #include "chrome/browser/sync/engine/syncer_types.h" | 11 #include "chrome/browser/sync/engine/syncer_types.h" |
12 | 12 |
13 namespace syncable { | 13 namespace syncable { |
14 class ScopedDirLookup; | 14 class ScopedDirLookup; |
15 class WriteTransaction; | 15 class WriteTransaction; |
16 } | 16 } |
17 | 17 |
18 namespace sync_pb { | 18 namespace sync_pb { |
19 class SyncEntity; | 19 class SyncEntity; |
20 } | 20 } |
21 | 21 |
22 namespace browser_sync { | 22 namespace browser_sync { |
23 | 23 |
| 24 class Cryptographer; |
| 25 |
24 // A syncer command for processing updates. | 26 // A syncer command for processing updates. |
25 // | 27 // |
26 // Preconditions - updates in the SyncerSesssion have been downloaded | 28 // Preconditions - updates in the SyncerSesssion have been downloaded |
27 // and verified. | 29 // and verified. |
28 // | 30 // |
29 // Postconditions - All of the verified SyncEntity data will be copied to | 31 // Postconditions - All of the verified SyncEntity data will be copied to |
30 // the server fields of the corresponding syncable entries. | 32 // the server fields of the corresponding syncable entries. |
31 // TODO(tim): This should not be ModelChanging (bug 36592). | 33 // TODO(tim): This should not be ModelChanging (bug 36592). |
32 class ProcessUpdatesCommand : public ModelChangingSyncerCommand { | 34 class ProcessUpdatesCommand : public ModelChangingSyncerCommand { |
33 public: | 35 public: |
34 ProcessUpdatesCommand(); | 36 ProcessUpdatesCommand(); |
35 virtual ~ProcessUpdatesCommand(); | 37 virtual ~ProcessUpdatesCommand(); |
36 | 38 |
37 protected: | 39 protected: |
38 // ModelChangingSyncerCommand implementation. | 40 // ModelChangingSyncerCommand implementation. |
39 virtual bool HasCustomGroupsToChange() const OVERRIDE; | 41 virtual bool HasCustomGroupsToChange() const OVERRIDE; |
40 virtual std::set<ModelSafeGroup> GetGroupsToChange( | 42 virtual std::set<ModelSafeGroup> GetGroupsToChange( |
41 const sessions::SyncSession& session) const OVERRIDE; | 43 const sessions::SyncSession& session) const OVERRIDE; |
42 virtual bool ModelNeutralExecuteImpl( | 44 virtual bool ModelNeutralExecuteImpl( |
43 sessions::SyncSession* session) OVERRIDE; | 45 sessions::SyncSession* session) OVERRIDE; |
44 virtual void ModelChangingExecuteImpl( | 46 virtual void ModelChangingExecuteImpl( |
45 sessions::SyncSession* session) OVERRIDE; | 47 sessions::SyncSession* session) OVERRIDE; |
46 | 48 |
47 private: | 49 private: |
48 ServerUpdateProcessingResult ProcessUpdate( | 50 ServerUpdateProcessingResult ProcessUpdate( |
49 const syncable::ScopedDirLookup& dir, | 51 const syncable::ScopedDirLookup& dir, |
50 const sync_pb::SyncEntity& proto_update, | 52 const sync_pb::SyncEntity& proto_update, |
| 53 const Cryptographer* cryptographer, |
51 syncable::WriteTransaction* const trans); | 54 syncable::WriteTransaction* const trans); |
52 DISALLOW_COPY_AND_ASSIGN(ProcessUpdatesCommand); | 55 DISALLOW_COPY_AND_ASSIGN(ProcessUpdatesCommand); |
53 }; | 56 }; |
54 | 57 |
55 } // namespace browser_sync | 58 } // namespace browser_sync |
56 | 59 |
57 #endif // CHROME_BROWSER_SYNC_ENGINE_PROCESS_UPDATES_COMMAND_H_ | 60 #endif // CHROME_BROWSER_SYNC_ENGINE_PROCESS_UPDATES_COMMAND_H_ |
OLD | NEW |