diff options
author | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-05 23:31:12 +0000 |
---|---|---|
committer | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-05 23:31:12 +0000 |
commit | a77809f6c4c703fbb9c34a47cf24e3b77056a02f (patch) | |
tree | 20b9aefa78c1bc42c88acd5460a5b3f1c22bc792 /sync/protocol/sync_enums.proto | |
parent | 60675bca71fe85d9797b56333a3a351f3b836aa1 (diff) | |
download | chromium_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/sync_enums.proto')
-rw-r--r-- | sync/protocol/sync_enums.proto | 2 |
1 files changed, 1 insertions, 1 deletions
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; |