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 /chrome/common/metrics | |
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 'chrome/common/metrics')
-rw-r--r-- | chrome/common/metrics/metrics_log_base.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/metrics/metrics_log_base.cc b/chrome/common/metrics/metrics_log_base.cc index e16b46d..5b12cfd 100644 --- a/chrome/common/metrics/metrics_log_base.cc +++ b/chrome/common/metrics/metrics_log_base.cc @@ -348,8 +348,8 @@ void MetricsLogBase::RecordLoadEvent(int window_id, origin_string = "global-history"; break; - case content::PAGE_TRANSITION_START_PAGE: - origin_string = "start-page"; + case content::PAGE_TRANSITION_AUTO_TOPLEVEL: + origin_string = "auto-toplevel"; break; case content::PAGE_TRANSITION_FORM_SUBMIT: |