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

Unified Diff: sync/protocol/session_specifics.proto

Issue 11098002: [Sync] Add a new global_id field to sync_pb::TabNavigation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 months 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/protocol/proto_value_conversions.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/protocol/session_specifics.proto
diff --git a/sync/protocol/session_specifics.proto b/sync/protocol/session_specifics.proto
index 2438ef66d363d4ccfab060f94529235ef1b674eb..61d2634b90eac1154f37579e1ee88201add40e9e 100644
--- a/sync/protocol/session_specifics.proto
+++ b/sync/protocol/session_specifics.proto
@@ -111,9 +111,6 @@ message TabNavigation {
optional SyncEnums.PageTransitionRedirectType redirect_type = 7;
// The unique navigation id (within this client).
optional int32 unique_id = 8;
- // Timestamp for when this navigation last occurred (in client time).
- // If the user goes back/foward in history the timestamp may refresh.
- optional int64 timestamp = 9;
// User used the Forward or Back button to navigate among browsing history.
optional bool navigation_forward_back = 10;
// User used the address bar to trigger this navigation.
@@ -124,5 +121,12 @@ message TabNavigation {
optional bool navigation_chain_start = 13;
// The last transition in a redirect chain.
optional bool navigation_chain_end = 14;
-}
+ // Timestamp for when this navigation last occurred (in milliseconds
+ // since the Unix epoch according to the local clock). Deprecated
+ // in favor of local_timestamp (which has microsecond resolution).
+ optional int64 timestamp_deprecated = 9;
+ // Timestamp for when this navigation last occurred (in microseconds
+ // since the Windows epoch according to the local clock).
+ optional int64 local_timestamp = 15;
Nicolas Zea 2012/10/08 22:20:56 local_timestamp_us? Also, any reason why we're sw
+}
« no previous file with comments | « sync/protocol/proto_value_conversions.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698