| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_PREFS_PREFS_TAB_HELPER_H_ | 5 #ifndef CHROME_BROWSER_UI_PREFS_PREFS_TAB_HELPER_H_ |
| 6 #define CHROME_BROWSER_UI_PREFS_PREFS_TAB_HELPER_H_ | 6 #define CHROME_BROWSER_UI_PREFS_PREFS_TAB_HELPER_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/prefs/public/pref_change_registrar.h" | 9 #include "base/prefs/public/pref_change_registrar.h" |
| 10 #include "content/public/browser/notification_observer.h" | 10 #include "content/public/browser/notification_observer.h" |
| 11 #include "content/public/browser/notification_registrar.h" | 11 #include "content/public/browser/notification_registrar.h" |
| 12 #include "content/public/browser/web_contents_user_data.h" | 12 #include "content/public/browser/web_contents_user_data.h" |
| 13 | 13 |
| 14 class OverlayUserPrefStore; | 14 class OverlayUserPrefStore; |
| 15 class PrefServiceSyncable; | 15 class PrefRegistrySyncable; |
| 16 class PrefService; |
| 16 class Profile; | 17 class Profile; |
| 17 | 18 |
| 18 namespace content { | 19 namespace content { |
| 19 class WebContents; | 20 class WebContents; |
| 20 } | 21 } |
| 21 | 22 |
| 22 // Per-tab class to handle user preferences. | 23 // Per-tab class to handle user preferences. |
| 23 class PrefsTabHelper : public content::NotificationObserver, | 24 class PrefsTabHelper : public content::NotificationObserver, |
| 24 public content::WebContentsUserData<PrefsTabHelper> { | 25 public content::WebContentsUserData<PrefsTabHelper> { |
| 25 public: | 26 public: |
| 26 virtual ~PrefsTabHelper(); | 27 virtual ~PrefsTabHelper(); |
| 27 | 28 |
| 28 static void InitIncognitoUserPrefStore(OverlayUserPrefStore* pref_store); | 29 static void InitIncognitoUserPrefStore(OverlayUserPrefStore* pref_store); |
| 29 static void RegisterUserPrefs(PrefServiceSyncable* prefs); | 30 static void RegisterUserPrefs(PrefRegistrySyncable* registry); |
| 31 static void MigrateUserPrefs(PrefService* prefs, |
| 32 PrefRegistrySyncable* registry); |
| 30 | 33 |
| 31 protected: | 34 protected: |
| 32 // Update the RenderView's WebPreferences. Exposed as protected for testing. | 35 // Update the RenderView's WebPreferences. Exposed as protected for testing. |
| 33 virtual void UpdateWebPreferences(); | 36 virtual void UpdateWebPreferences(); |
| 34 | 37 |
| 35 private: | 38 private: |
| 36 explicit PrefsTabHelper(content::WebContents* contents); | 39 explicit PrefsTabHelper(content::WebContents* contents); |
| 37 friend class content::WebContentsUserData<PrefsTabHelper>; | 40 friend class content::WebContentsUserData<PrefsTabHelper>; |
| 38 | 41 |
| 39 // content::NotificationObserver overrides: | 42 // content::NotificationObserver overrides: |
| 40 virtual void Observe(int type, | 43 virtual void Observe(int type, |
| 41 const content::NotificationSource& source, | 44 const content::NotificationSource& source, |
| 42 const content::NotificationDetails& details) OVERRIDE; | 45 const content::NotificationDetails& details) OVERRIDE; |
| 43 | 46 |
| 44 // Update the WebContents's RendererPreferences. | 47 // Update the WebContents's RendererPreferences. |
| 45 void UpdateRendererPreferences(); | 48 void UpdateRendererPreferences(); |
| 46 | 49 |
| 47 Profile* GetProfile(); | 50 Profile* GetProfile(); |
| 48 void OnWebPrefChanged(const std::string& pref_name); | 51 void OnWebPrefChanged(const std::string& pref_name); |
| 49 | 52 |
| 50 content::WebContents* web_contents_; | 53 content::WebContents* web_contents_; |
| 51 content::NotificationRegistrar registrar_; | 54 content::NotificationRegistrar registrar_; |
| 52 PrefChangeRegistrar pref_change_registrar_; | 55 PrefChangeRegistrar pref_change_registrar_; |
| 53 | 56 |
| 54 DISALLOW_COPY_AND_ASSIGN(PrefsTabHelper); | 57 DISALLOW_COPY_AND_ASSIGN(PrefsTabHelper); |
| 55 }; | 58 }; |
| 56 | 59 |
| 57 #endif // CHROME_BROWSER_UI_PREFS_PREFS_TAB_HELPER_H_ | 60 #endif // CHROME_BROWSER_UI_PREFS_PREFS_TAB_HELPER_H_ |
| OLD | NEW |