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 "closeNotificationPromo". |
25 void HandleClosePromo(const ListValue* args); | 25 void HandleCloseNotificationPromo(const ListValue* args); |
| 26 |
| 27 // Callback for "notificationPromoViewed". |
| 28 void HandleNotificationPromoViewed(const ListValue* args); |
26 | 29 |
27 // Callback for "pageSelected". | 30 // Callback for "pageSelected". |
28 void HandlePageSelected(const ListValue* args); | 31 void HandlePageSelected(const ListValue* args); |
29 | 32 |
30 // Callback for "introMessageDismissed". This is called when the close button | 33 // Callback for "introMessageDismissed". This is called when the close button |
31 // on the ntp4 bubble is clicked or when a NavDot is clicked. | 34 // on the ntp4 bubble is clicked or when a NavDot is clicked. |
32 void HandleIntroMessageDismissed(const ListValue* args); | 35 void HandleIntroMessageDismissed(const ListValue* args); |
33 | 36 |
34 // Callback for "handleIntroMessageSeen". No arguments. Called when the intro | 37 // Callback for "handleIntroMessageSeen". No arguments. Called when the intro |
35 // message is displayed. | 38 // message is displayed. |
(...skipping 13 matching lines...) Expand all Loading... |
49 // The lower 10 bits of kNTPShownPage are used for the index within the page | 52 // The lower 10 bits of kNTPShownPage are used for the index within the page |
50 // group, and the rest of the bits are used for the page group ID (defined | 53 // group, and the rest of the bits are used for the page group ID (defined |
51 // here). | 54 // here). |
52 enum { | 55 enum { |
53 INDEX_MASK = (1 << 10) - 1, | 56 INDEX_MASK = (1 << 10) - 1, |
54 MOST_VISITED_PAGE_ID = 1 << 10, | 57 MOST_VISITED_PAGE_ID = 1 << 10, |
55 APPS_PAGE_ID = 2 << 10, | 58 APPS_PAGE_ID = 2 << 10, |
56 BOOKMARKS_PAGE_ID = 3 << 10, | 59 BOOKMARKS_PAGE_ID = 3 << 10, |
57 }; | 60 }; |
58 | 61 |
| 62 // Helper to send out promo resource change notification. |
| 63 void NotifyPromoResourceChanged(); |
| 64 |
59 DISALLOW_COPY_AND_ASSIGN(NewTabPageHandler); | 65 DISALLOW_COPY_AND_ASSIGN(NewTabPageHandler); |
60 }; | 66 }; |
61 | 67 |
62 #endif // CHROME_BROWSER_UI_WEBUI_NTP_NEW_TAB_PAGE_HANDLER_H_ | 68 #endif // CHROME_BROWSER_UI_WEBUI_NTP_NEW_TAB_PAGE_HANDLER_H_ |
OLD | NEW |