diff options
Diffstat (limited to 'components/sync_driver/model_associator.h')
-rw-r--r-- | components/sync_driver/model_associator.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/components/sync_driver/model_associator.h b/components/sync_driver/model_associator.h index 0bc6d7a..4d6e327 100644 --- a/components/sync_driver/model_associator.h +++ b/components/sync_driver/model_associator.h @@ -83,8 +83,9 @@ class PerDataTypeAssociatorInterface : public AssociatorInterface { const IDType& node_id, syncer::BaseNode* sync_node) = 0; - // Associates the given chrome node with the given sync id. - virtual void Associate(const Node* node, int64 sync_id) = 0; + // Associates the given chrome node with the given sync node. + virtual void Associate(const Node* node, + const syncer::BaseNode& sync_node) = 0; // Remove the association that corresponds to the given sync id. virtual void Disassociate(int64 sync_id) = 0; |