| 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_OPTIONS_ADVANCED_OPTIONS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_ADVANCED_OPTIONS_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_ADVANCED_OPTIONS_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_ADVANCED_OPTIONS_HANDLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/prefs/pref_member.h" | 9 #include "chrome/browser/prefs/pref_member.h" |
| 10 #include "chrome/browser/prefs/pref_set_observer.h" | 10 #include "chrome/browser/prefs/pref_set_observer.h" |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 #endif | 165 #endif |
| 166 | 166 |
| 167 #if defined(ENABLE_REMOTING) && !defined(OS_CHROMEOS) | 167 #if defined(ENABLE_REMOTING) && !defined(OS_CHROMEOS) |
| 168 remoting::RemotingOptionsHandler remoting_options_handler_; | 168 remoting::RemotingOptionsHandler remoting_options_handler_; |
| 169 #endif | 169 #endif |
| 170 | 170 |
| 171 FilePathPrefMember default_download_location_; | 171 FilePathPrefMember default_download_location_; |
| 172 BooleanPrefMember ask_for_save_location_; | 172 BooleanPrefMember ask_for_save_location_; |
| 173 StringPrefMember auto_open_files_; | 173 StringPrefMember auto_open_files_; |
| 174 IntegerPrefMember default_font_size_; | 174 IntegerPrefMember default_font_size_; |
| 175 IntegerPrefMember default_fixed_font_size_; | |
| 176 scoped_ptr<PrefSetObserver> proxy_prefs_; | 175 scoped_ptr<PrefSetObserver> proxy_prefs_; |
| 177 scoped_ptr<OptionsManagedBannerHandler> banner_handler_; | 176 scoped_ptr<OptionsManagedBannerHandler> banner_handler_; |
| 178 | 177 |
| 179 DISALLOW_COPY_AND_ASSIGN(AdvancedOptionsHandler); | 178 DISALLOW_COPY_AND_ASSIGN(AdvancedOptionsHandler); |
| 180 }; | 179 }; |
| 181 | 180 |
| 182 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_ADVANCED_OPTIONS_HANDLER_H_ | 181 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_ADVANCED_OPTIONS_HANDLER_H_ |
| OLD | NEW |