summaryrefslogtreecommitdiffstats
path: root/sync/protocol
diff options
context:
space:
mode:
authorrogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-05 23:31:12 +0000
committerrogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-05 23:31:12 +0000
commita77809f6c4c703fbb9c34a47cf24e3b77056a02f (patch)
tree20b9aefa78c1bc42c88acd5460a5b3f1c22bc792 /sync/protocol
parent60675bca71fe85d9797b56333a3a351f3b836aa1 (diff)
downloadchromium_src-a77809f6c4c703fbb9c34a47cf24e3b77056a02f.zip
chromium_src-a77809f6c4c703fbb9c34a47cf24e3b77056a02f.tar.gz
chromium_src-a77809f6c4c703fbb9c34a47cf24e3b77056a02f.tar.bz2
First part of PAGE_TRANSITION_START_PAGE cleanup.
I replaced START_PAGE with AUTO_TOPLEVEL because that more accurately describes how its being used in the code. In a followed CL I will add specific support for startup pages, which was the original intention of START_PAGE. This CL is basically a large search and replace and does not change the behaviour of the code. BUG=144002 TEST=No user visible change Review URL: https://chromiumcodereview.appspot.com/10897034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155047 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/protocol')
-rw-r--r--sync/protocol/proto_enum_conversions.cc2
-rw-r--r--sync/protocol/sync_enums.proto2
2 files changed, 2 insertions, 2 deletions
diff --git a/sync/protocol/proto_enum_conversions.cc b/sync/protocol/proto_enum_conversions.cc
index d80b4e3..42d8ab5 100644
--- a/sync/protocol/proto_enum_conversions.cc
+++ b/sync/protocol/proto_enum_conversions.cc
@@ -43,7 +43,7 @@ const char* GetPageTransitionString(
ENUM_CASE(sync_pb::SyncEnums, AUTO_SUBFRAME);
ENUM_CASE(sync_pb::SyncEnums, MANUAL_SUBFRAME);
ENUM_CASE(sync_pb::SyncEnums, GENERATED);
- ENUM_CASE(sync_pb::SyncEnums, START_PAGE);
+ ENUM_CASE(sync_pb::SyncEnums, AUTO_TOPLEVEL);
ENUM_CASE(sync_pb::SyncEnums, FORM_SUBMIT);
ENUM_CASE(sync_pb::SyncEnums, RELOAD);
ENUM_CASE(sync_pb::SyncEnums, KEYWORD);
diff --git a/sync/protocol/sync_enums.proto b/sync/protocol/sync_enums.proto
index 0842cff..f0381fc 100644
--- a/sync/protocol/sync_enums.proto
+++ b/sync/protocol/sync_enums.proto
@@ -43,7 +43,7 @@ message SyncEnums {
AUTO_SUBFRAME = 3;
MANUAL_SUBFRAME = 4;
GENERATED = 5;
- START_PAGE = 6;
+ AUTO_TOPLEVEL = 6;
FORM_SUBMIT = 7;
RELOAD = 8;
KEYWORD = 9;