| 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/common/notification_registrar.h" |
| 12 #include "chrome/browser/prefs/pref_change_registrar.h" | 12 #include "chrome/browser/prefs/pref_change_registrar.h" |
| 13 | 13 |
| 14 class DOMUI; | 14 class DOMUI; |
| 15 class Extension; |
| 15 class Value; | 16 class Value; |
| 16 class PrefService; | 17 class PrefService; |
| 17 | 18 |
| 18 // Use for the shown sections bitmask. | 19 // Use for the shown sections bitmask. |
| 19 // Currently, only the THUMB and APPS sections can be toggled by the user. Other | 20 // Currently, only the THUMB and APPS sections can be toggled by the user. Other |
| 20 // sections are shown automatically if they have data, and hidden otherwise. | 21 // sections are shown automatically if they have data, and hidden otherwise. |
| 21 enum Section { | 22 enum Section { |
| 22 // If one of these is set, the corresponding section shows large thumbnails, | 23 // If one of these is set, the corresponding section shows large thumbnails, |
| 23 // else it shows only a small overview list. | 24 // else it shows only a small overview list. |
| 24 THUMB = 1 << 0, | 25 THUMB = 1 << 0, |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 57 |
| 57 // Callback for "setShownSections" message. | 58 // Callback for "setShownSections" message. |
| 58 void HandleSetShownSections(const ListValue* args); | 59 void HandleSetShownSections(const ListValue* args); |
| 59 | 60 |
| 60 static void RegisterUserPrefs(PrefService* pref_service); | 61 static void RegisterUserPrefs(PrefService* pref_service); |
| 61 | 62 |
| 62 static void MigrateUserPrefs(PrefService* pref_service, | 63 static void MigrateUserPrefs(PrefService* pref_service, |
| 63 int old_pref_version, | 64 int old_pref_version, |
| 64 int new_pref_version); | 65 int new_pref_version); |
| 65 | 66 |
| 67 static void OnExtensionInstalled(PrefService* prefs, |
| 68 const Extension* extension); |
| 69 |
| 66 private: | 70 private: |
| 67 PrefService* pref_service_; | 71 PrefService* pref_service_; |
| 68 PrefChangeRegistrar pref_registrar_; | 72 PrefChangeRegistrar pref_registrar_; |
| 69 NotificationRegistrar notification_registrar_; | 73 NotificationRegistrar notification_registrar_; |
| 70 | 74 |
| 71 DISALLOW_COPY_AND_ASSIGN(ShownSectionsHandler); | 75 DISALLOW_COPY_AND_ASSIGN(ShownSectionsHandler); |
| 72 }; | 76 }; |
| 73 | 77 |
| 74 #endif // CHROME_BROWSER_DOM_UI_SHOWN_SECTIONS_HANDLER_H_ | 78 #endif // CHROME_BROWSER_DOM_UI_SHOWN_SECTIONS_HANDLER_H_ |
| OLD | NEW |