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

Unified Diff: sync/syncable/syncable_columns.h

Issue 11636006: WIP: The Bookmark Position Megapatch (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Various updates, including switch suffix to unique_client_tag style Created 8 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sync/syncable/scoped_parent_child_index_updater.cc ('k') | sync/syncable/syncable_enum_conversions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/syncable/syncable_columns.h
diff --git a/sync/syncable/syncable_columns.h b/sync/syncable/syncable_columns.h
index 6eda0587785cbb4d84d4fa0abbd59015322ad43e..54dc033a5b930309108f03dfb25e3deebd11e7d4 100644
--- a/sync/syncable/syncable_columns.h
+++ b/sync/syncable/syncable_columns.h
@@ -37,8 +37,6 @@ static const ColumnSpec g_metas_columns[] = {
{"id", "varchar(255) default \"r\""},
{"parent_id", "varchar(255) default \"r\""},
{"server_parent_id", "varchar(255) default \"r\""},
- {"prev_id", "varchar(255) default \"r\""},
- {"next_id", "varchar(255) default \"r\""},
//////////////////////////////////////
// bits
{"is_unsynced", "bit default 0"},
@@ -59,8 +57,12 @@ static const ColumnSpec g_metas_columns[] = {
{"server_specifics", "blob"},
{"base_server_specifics", "blob"},
//////////////////////////////////////
- // Blobs (ordinals).
- {"server_ordinal_in_parent", "blob"},
+ // Blobs (positions).
+ {"server_unique_position", "blob"},
+ {"unique_position", "blob"},
+ //////////////////////////////////////
+ // Blobs (bytes).
+ {"unique_bookmark_tag", "blob"},
};
// At least enforce that there are equal number of column names and fields.
« no previous file with comments | « sync/syncable/scoped_parent_child_index_updater.cc ('k') | sync/syncable/syncable_enum_conversions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698