Chromium Code Reviews| Index: chrome/browser/ui/webui/ntp/new_tab_page_handler.h |
| diff --git a/chrome/browser/ui/webui/ntp/new_tab_page_handler.h b/chrome/browser/ui/webui/ntp/new_tab_page_handler.h |
| index 9f6e8e13be8f48e57c3ec79e32057395bdba445d..a18d7c0edef5aefcc34a9c2d8861938c700876d8 100644 |
| --- a/chrome/browser/ui/webui/ntp/new_tab_page_handler.h |
| +++ b/chrome/browser/ui/webui/ntp/new_tab_page_handler.h |
| @@ -65,7 +65,8 @@ class NewTabPageHandler : public content::WebUIMessageHandler { |
| MOST_VISITED_PAGE_ID = 1 << kPageIdOffset, |
| APPS_PAGE_ID = 2 << kPageIdOffset, |
| BOOKMARKS_PAGE_ID = 3 << kPageIdOffset, |
| - LAST_PAGE_ID = BOOKMARKS_PAGE_ID |
| + SUGGESTIONS_PAGE_ID = 4 << kPageIdOffset, |
|
Evan Stade
2012/02/17 20:07:35
you must update histograms.xml as well.
GeorgeY
2012/02/21 23:32:23
Should I do this in the same cl? I always thought
Evan Stade
2012/02/23 02:10:20
no, you have to do it in a separate CL, but you ca
GeorgeY
2012/02/24 01:52:07
cl 3970015
|
| + LAST_PAGE_ID = SUGGESTIONS_PAGE_ID |
| }; |
| static const int kHistogramEnumerationMax = |
| (LAST_PAGE_ID >> kPageIdOffset) + 1; |