Chromium Code Reviews| 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_WEBUI_OPTIONS_CONTENT_SETTINGS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_CONTENT_SETTINGS_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CONTENT_SETTINGS_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CONTENT_SETTINGS_HANDLER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 225 void UpdateProtectedContentExceptionsButton(); | 225 void UpdateProtectedContentExceptionsButton(); |
| 226 | 226 |
| 227 // Member variables --------------------------------------------------------- | 227 // Member variables --------------------------------------------------------- |
| 228 | 228 |
| 229 content::NotificationRegistrar notification_registrar_; | 229 content::NotificationRegistrar notification_registrar_; |
| 230 PrefChangeRegistrar pref_change_registrar_; | 230 PrefChangeRegistrar pref_change_registrar_; |
| 231 scoped_ptr<PepperFlashSettingsManager> flash_settings_manager_; | 231 scoped_ptr<PepperFlashSettingsManager> flash_settings_manager_; |
| 232 MediaSettingsInfo media_settings_; | 232 MediaSettingsInfo media_settings_; |
| 233 scoped_ptr<content::HostZoomMap::Subscription> host_zoom_map_subscription_; | 233 scoped_ptr<content::HostZoomMap::Subscription> host_zoom_map_subscription_; |
| 234 ScopedObserver<HostContentSettingsMap, content_settings::Observer> observer_; | 234 ScopedObserver<HostContentSettingsMap, content_settings::Observer> observer_; |
| 235 ScopedObserver<HostContentSettingsMap, content_settings::Observer> | |
|
Bernhard Bauer
2014/09/19 18:18:50
You can use the other observer for this.
Daniel Nishi
2014/09/19 19:49:15
Done.
| |
| 236 otr_observer_; | |
| 235 | 237 |
| 236 DISALLOW_COPY_AND_ASSIGN(ContentSettingsHandler); | 238 DISALLOW_COPY_AND_ASSIGN(ContentSettingsHandler); |
| 237 }; | 239 }; |
| 238 | 240 |
| 239 } // namespace options | 241 } // namespace options |
| 240 | 242 |
| 241 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CONTENT_SETTINGS_HANDLER_H_ | 243 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CONTENT_SETTINGS_HANDLER_H_ |
| OLD | NEW |