summaryrefslogtreecommitdiffstats
path: root/sync/protocol
diff options
context:
space:
mode:
authoralbertb@chromium.org <albertb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-05 00:13:33 +0000
committeralbertb@chromium.org <albertb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-05 00:13:33 +0000
commite05c2bfbe755499514ad252234f83e98e09721b2 (patch)
tree9fc09f5ca1fac4e35359cb152f7ef8a64f43253f /sync/protocol
parent2d018fe8f4f221bd780f4945bba658eed1c061fd (diff)
downloadchromium_src-e05c2bfbe755499514ad252234f83e98e09721b2.zip
chromium_src-e05c2bfbe755499514ad252234f83e98e09721b2.tar.gz
chromium_src-e05c2bfbe755499514ad252234f83e98e09721b2.tar.bz2
sync: Rename timestamp to timestamp_msec to make the unit obvious.
R=zea,sky BUG= Review URL: https://chromiumcodereview.appspot.com/12088117 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180569 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/protocol')
-rw-r--r--sync/protocol/proto_value_conversions.cc2
-rw-r--r--sync/protocol/session_specifics.proto2
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.