diff options
Diffstat (limited to 'sync/protocol')
-rw-r--r-- | sync/protocol/proto_value_conversions.cc | 2 | ||||
-rw-r--r-- | sync/protocol/session_specifics.proto | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sync/protocol/proto_value_conversions.cc b/sync/protocol/proto_value_conversions.cc index b675674..886d55a 100644 --- a/sync/protocol/proto_value_conversions.cc +++ b/sync/protocol/proto_value_conversions.cc @@ -172,7 +172,7 @@ DictionaryValue* TabNavigationToValue( SET_ENUM(page_transition, GetPageTransitionString); SET_ENUM(redirect_type, GetPageTransitionRedirectTypeString); SET_INT32(unique_id); - SET_INT64(timestamp); + SET_INT64(timestamp_msec); SET_BOOL(navigation_forward_back); SET_BOOL(navigation_from_address_bar); SET_BOOL(navigation_home_page); diff --git a/sync/protocol/session_specifics.proto b/sync/protocol/session_specifics.proto index 5519e09..88e923b0 100644 --- a/sync/protocol/session_specifics.proto +++ b/sync/protocol/session_specifics.proto @@ -104,7 +104,7 @@ message TabNavigation { 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; + optional int64 timestamp_msec = 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. |