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 "closeSyncNotification". |
| 28 void HandleCloseSyncNotification(const ListValue* args); |
| 29 |
27 // Callback for "pageSelected". | 30 // Callback for "pageSelected". |
28 void HandlePageSelected(const ListValue* args); | 31 void HandlePageSelected(const ListValue* args); |
29 | 32 |
30 // Register NTP preferences. | 33 // Register NTP preferences. |
31 static void RegisterUserPrefs(PrefService* prefs); | 34 static void RegisterUserPrefs(PrefService* prefs); |
32 | 35 |
33 // Registers values (strings etc.) for the page. | 36 // Registers values (strings etc.) for the page. |
34 static void GetLocalizedValues(Profile* profile, DictionaryValue* values); | 37 static void GetLocalizedValues(Profile* profile, DictionaryValue* values); |
35 | 38 |
36 private: | 39 private: |
37 // The purpose of this enum is to track which page on the NTP is showing. | 40 // 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 | 41 // 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 | 42 // group, and the rest of the bits are used for the page group ID (defined |
40 // here). | 43 // here). |
41 enum { | 44 enum { |
42 INDEX_MASK = (1 << 10) - 1, | 45 INDEX_MASK = (1 << 10) - 1, |
43 MOST_VISITED_PAGE_ID = 1 << 10, | 46 MOST_VISITED_PAGE_ID = 1 << 10, |
44 APPS_PAGE_ID = 2 << 10, | 47 APPS_PAGE_ID = 2 << 10, |
45 BOOKMARKS_PAGE_ID = 3 << 10, | 48 BOOKMARKS_PAGE_ID = 3 << 10, |
46 }; | 49 }; |
47 | 50 |
48 DISALLOW_COPY_AND_ASSIGN(NewTabPageHandler); | 51 DISALLOW_COPY_AND_ASSIGN(NewTabPageHandler); |
49 }; | 52 }; |
50 | 53 |
51 #endif // CHROME_BROWSER_UI_WEBUI_NTP_NEW_TAB_PAGE_HANDLER_H_ | 54 #endif // CHROME_BROWSER_UI_WEBUI_NTP_NEW_TAB_PAGE_HANDLER_H_ |
OLD | NEW |