OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_WEBUI_NTP_NEW_TAB_PAGE_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_NTP_NEW_TAB_PAGE_HANDLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_NTP_NEW_TAB_PAGE_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_NTP_NEW_TAB_PAGE_HANDLER_H_ |
7 | 7 |
8 #include "base/values.h" | 8 #include "base/values.h" |
9 #include "content/browser/webui/web_ui.h" | 9 #include "content/browser/webui/web_ui.h" |
10 | 10 |
11 class PrefService; | 11 class PrefService; |
12 class Profile; | 12 class Profile; |
13 | 13 |
14 // Handler for general New Tab Page functionality that does not belong in a | 14 // Handler for general New Tab Page functionality that does not belong in a |
15 // more specialized handler. | 15 // more specialized handler. |
16 class NewTabPageHandler : public WebUIMessageHandler { | 16 class NewTabPageHandler : public WebUIMessageHandler { |
17 public: | 17 public: |
18 NewTabPageHandler() {} | 18 NewTabPageHandler() {} |
19 virtual ~NewTabPageHandler() {} | 19 virtual ~NewTabPageHandler() {} |
20 | 20 |
21 // WebUIMessageHandler implementation. | 21 // WebUIMessageHandler implementation. |
22 virtual void RegisterMessages() OVERRIDE; | 22 virtual void RegisterMessages() OVERRIDE; |
23 | 23 |
24 // Callback for "closePromo". | 24 // Callback for "closePromo". |
25 void HandleClosePromo(const ListValue* args); | 25 void HandleClosePromo(const ListValue* args); |
26 | 26 |
27 // Callback for "pageSelected". | 27 // Callback for "pageSelected". |
28 void HandlePageSelected(const ListValue* args); | 28 void HandlePageSelected(const ListValue* args); |
29 | 29 |
| 30 // Callback for "navigationDotUsed". This is called when a navigation dot is |
| 31 // clicked, whereas pageSelected might be called after any page-switching user |
| 32 // action. |
| 33 void HandleNavDotUsed(const ListValue* args); |
| 34 |
| 35 // Callback for "handleIntroMessageSeen". No arguments. Called when the intro |
| 36 // message is displayed. |
| 37 void HandleIntroMessageSeen(const ListValue* args); |
| 38 |
30 // Register NTP preferences. | 39 // Register NTP preferences. |
31 static void RegisterUserPrefs(PrefService* prefs); | 40 static void RegisterUserPrefs(PrefService* prefs); |
32 | 41 |
33 // Registers values (strings etc.) for the page. | 42 // Registers values (strings etc.) for the page. |
34 static void GetLocalizedValues(Profile* profile, DictionaryValue* values); | 43 static void GetLocalizedValues(Profile* profile, DictionaryValue* values); |
35 | 44 |
36 private: | 45 private: |
37 // The purpose of this enum is to track which page on the NTP is showing. | 46 // The purpose of this enum is to track which page on the NTP is showing. |
38 // The lower 10 bits of kNTPShownPage are used for the index within the page | 47 // The lower 10 bits of kNTPShownPage are used for the index within the page |
39 // group, and the rest of the bits are used for the page group ID (defined | 48 // group, and the rest of the bits are used for the page group ID (defined |
40 // here). | 49 // here). |
41 enum { | 50 enum { |
42 INDEX_MASK = (1 << 10) - 1, | 51 INDEX_MASK = (1 << 10) - 1, |
43 MOST_VISITED_PAGE_ID = 1 << 10, | 52 MOST_VISITED_PAGE_ID = 1 << 10, |
44 APPS_PAGE_ID = 2 << 10, | 53 APPS_PAGE_ID = 2 << 10, |
45 BOOKMARKS_PAGE_ID = 3 << 10, | 54 BOOKMARKS_PAGE_ID = 3 << 10, |
46 }; | 55 }; |
47 | 56 |
48 DISALLOW_COPY_AND_ASSIGN(NewTabPageHandler); | 57 DISALLOW_COPY_AND_ASSIGN(NewTabPageHandler); |
49 }; | 58 }; |
50 | 59 |
51 #endif // CHROME_BROWSER_UI_WEBUI_NTP_NEW_TAB_PAGE_HANDLER_H_ | 60 #endif // CHROME_BROWSER_UI_WEBUI_NTP_NEW_TAB_PAGE_HANDLER_H_ |
OLD | NEW |