OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_DOM_UI_SHOWN_SECTIONS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_DOM_UI_SHOWN_SECTIONS_HANDLER_H_ |
6 #define CHROME_BROWSER_DOM_UI_SHOWN_SECTIONS_HANDLER_H_ | 6 #define CHROME_BROWSER_DOM_UI_SHOWN_SECTIONS_HANDLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/dom_ui/dom_ui.h" | 9 #include "chrome/browser/dom_ui/dom_ui.h" |
10 #include "chrome/common/notification_observer.h" | 10 #include "chrome/common/notification_observer.h" |
| 11 #include "chrome/common/notification_registrar.h" |
11 #include "chrome/browser/prefs/pref_change_registrar.h" | 12 #include "chrome/browser/prefs/pref_change_registrar.h" |
12 | 13 |
13 class DOMUI; | 14 class DOMUI; |
14 class Value; | 15 class Value; |
15 class PrefService; | 16 class PrefService; |
16 | 17 |
17 // Use for the shown sections bitmask. | 18 // Use for the shown sections bitmask. |
18 // Currently, only the THUMB and APPS sections can be toggled by the user. Other | 19 // Currently, only the THUMB and APPS sections can be toggled by the user. Other |
19 // sections are shown automatically if they have data, and hidden otherwise. | 20 // sections are shown automatically if they have data, and hidden otherwise. |
20 enum Section { | 21 enum Section { |
21 // If one of these is set, the corresponding section shows large thumbnails, | 22 // If one of these is set, the corresponding section shows large thumbnails, |
22 // else it shows only a small overview list. | 23 // else it shows only a small overview list. |
23 THUMB = 1 << 0, | 24 THUMB = 1 << 0, |
24 APPS = 1 << 6, | 25 APPS = 1 << 6, |
25 | 26 |
| 27 // We use the low 16 bits for sections, the high 16 bits for minimized state. |
| 28 ALL_SECTIONS_MASK = 0x0000FFFF, |
| 29 |
26 // If one of these is set, then the corresponding section is shown minimized | 30 // If one of these is set, then the corresponding section is shown minimized |
27 // at the bottom of the NTP and no data is directly visible on the NTP. | 31 // at the bottom of the NTP and no data is directly visible on the NTP. |
28 MINIMIZED_THUMB = 1 << (0 + 16), | 32 MINIMIZED_THUMB = 1 << (0 + 16), |
29 MINIMIZED_RECENT = 1 << (2 + 16), | 33 MINIMIZED_RECENT = 1 << (2 + 16), |
30 MINIMIZED_APPS = 1 << (6 + 16), | 34 MINIMIZED_APPS = 1 << (6 + 16), |
31 }; | 35 }; |
32 | 36 |
33 class ShownSectionsHandler : public DOMMessageHandler, | 37 class ShownSectionsHandler : public DOMMessageHandler, |
34 public NotificationObserver { | 38 public NotificationObserver { |
35 public: | 39 public: |
(...skipping 18 matching lines...) Expand all Loading... |
54 void HandleSetShownSections(const ListValue* args); | 58 void HandleSetShownSections(const ListValue* args); |
55 | 59 |
56 static void RegisterUserPrefs(PrefService* pref_service); | 60 static void RegisterUserPrefs(PrefService* pref_service); |
57 | 61 |
58 static void MigrateUserPrefs(PrefService* pref_service, | 62 static void MigrateUserPrefs(PrefService* pref_service, |
59 int old_pref_version, | 63 int old_pref_version, |
60 int new_pref_version); | 64 int new_pref_version); |
61 | 65 |
62 private: | 66 private: |
63 PrefService* pref_service_; | 67 PrefService* pref_service_; |
64 PrefChangeRegistrar registrar_; | 68 PrefChangeRegistrar pref_registrar_; |
| 69 NotificationRegistrar notification_registrar_; |
65 | 70 |
66 DISALLOW_COPY_AND_ASSIGN(ShownSectionsHandler); | 71 DISALLOW_COPY_AND_ASSIGN(ShownSectionsHandler); |
67 }; | 72 }; |
68 | 73 |
69 #endif // CHROME_BROWSER_DOM_UI_SHOWN_SECTIONS_HANDLER_H_ | 74 #endif // CHROME_BROWSER_DOM_UI_SHOWN_SECTIONS_HANDLER_H_ |
OLD | NEW |