| Index: components/sync_driver/generic_change_processor.h
|
| diff --git a/components/sync_driver/generic_change_processor.h b/components/sync_driver/generic_change_processor.h
|
| index 9f55a53a8ee6c45e5aedcbf394a6b6b98a3912b5..a5e33cbc769286ee2d7c0ea382dcf37f3836d67b 100644
|
| --- a/components/sync_driver/generic_change_processor.h
|
| +++ b/components/sync_driver/generic_change_processor.h
|
| @@ -98,27 +98,18 @@
|
| virtual syncer::UserShare* share_handle() const OVERRIDE;
|
|
|
| private:
|
| - // Logically part of ProcessSyncChanges.
|
| - //
|
| - // |new_attachments| is an output parameter containing newly added attachments
|
| - // that need to be stored. This method will append to it.
|
| + // Helper methods for acting on changes coming from the datatype. These are
|
| + // logically part of ProcessSyncChanges.
|
| syncer::SyncError HandleActionAdd(const syncer::SyncChange& change,
|
| const std::string& type_str,
|
| const syncer::ModelType& type,
|
| const syncer::WriteTransaction& trans,
|
| - syncer::WriteNode* sync_node,
|
| - syncer::AttachmentList* new_attachments);
|
| -
|
| - // Logically part of ProcessSyncChanges.
|
| - //
|
| - // |new_attachments| is an output parameter containing newly added attachments
|
| - // that need to be stored. This method will append to it.
|
| + syncer::WriteNode* sync_node);
|
| syncer::SyncError HandleActionUpdate(const syncer::SyncChange& change,
|
| const std::string& type_str,
|
| const syncer::ModelType& type,
|
| const syncer::WriteTransaction& trans,
|
| - syncer::WriteNode* sync_node,
|
| - syncer::AttachmentList* new_attachments);
|
| + syncer::WriteNode* sync_node);
|
|
|
| // The SyncableService this change processor will forward changes on to.
|
| const base::WeakPtr<syncer::SyncableService> local_service_;
|
|
|