diff options
Diffstat (limited to 'sync')
-rw-r--r-- | sync/internal_api/delete_journal.cc | 2 | ||||
-rw-r--r-- | sync/internal_api/public/delete_journal.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/sync/internal_api/delete_journal.cc b/sync/internal_api/delete_journal.cc index ebeb5a7..edd10ae 100644 --- a/sync/internal_api/delete_journal.cc +++ b/sync/internal_api/delete_journal.cc @@ -21,6 +21,8 @@ void DeleteJournal::GetBookmarkDeleteJournals( deleted_entries.begin(); i != deleted_entries.end(); ++i) { delete_journal_list->push_back(BookmarkDeleteJournal()); delete_journal_list->back().id = (*i)->ref(syncer::syncable::META_HANDLE); + delete_journal_list->back().external_id = + (*i)->ref(syncer::syncable::LOCAL_EXTERNAL_ID); delete_journal_list->back().is_folder = (*i)->ref(syncer::syncable::IS_DIR); const sync_pb::EntitySpecifics& specifics = (*i)->ref( diff --git a/sync/internal_api/public/delete_journal.h b/sync/internal_api/public/delete_journal.h index 3152b02..ecf84fe 100644 --- a/sync/internal_api/public/delete_journal.h +++ b/sync/internal_api/public/delete_journal.h @@ -17,6 +17,7 @@ class BaseTransaction; struct BookmarkDeleteJournal { int64 id; // Metahandle of delete journal entry. + int64 external_id; // Bookmark ID in the native model. bool is_folder; sync_pb::EntitySpecifics specifics; }; |