diff options
author | mpearson@chromium.org <mpearson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-19 01:36:21 +0000 |
---|---|---|
committer | mpearson@chromium.org <mpearson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-19 01:36:21 +0000 |
commit | dd86b142989444fd3f29bf3c10ae8305674f58c3 (patch) | |
tree | 5d8389e613aee2fcbda410cb203ecafe87961684 /chrome/common/metrics | |
parent | a2f57e2cbfffa257ef542aa44807ee5d616cd15d (diff) | |
download | chromium_src-dd86b142989444fd3f29bf3c10ae8305674f58c3.zip chromium_src-dd86b142989444fd3f29bf3c10ae8305674f58c3.tar.gz chromium_src-dd86b142989444fd3f29bf3c10ae8305674f58c3.tar.bz2 |
Omnibox UMA Logging: Add Instant New Tab Page as a Classification
Currently the Instant Extended new tab page is classified as OTHER
because it doesn't have the URL chrome://newtab. This adds a new
way classification for the instant new tab page.
BUG=
Review URL: https://chromiumcodereview.appspot.com/19019008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212491 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/metrics')
-rw-r--r-- | chrome/common/metrics/proto/omnibox_event.proto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/common/metrics/proto/omnibox_event.proto b/chrome/common/metrics/proto/omnibox_event.proto index 247ac1c..bb36c0b 100644 --- a/chrome/common/metrics/proto/omnibox_event.proto +++ b/chrome/common/metrics/proto/omnibox_event.proto @@ -68,7 +68,8 @@ message OmniboxEventProto { HOMEPAGE = 3; // user switched settings to "open this page" mode. // Note that if the homepage is set to the new tab page or about blank, // then we'll classify the web page into those categories, not HOMEPAGE. - OTHER = 4; // everything else + OTHER = 4; // everything not included somewhere else on this list + INSTANT_NEW_TAB_PAGE = 5; // new tab page rendered by Instant } optional PageClassification current_page_classification = 10; |