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_ADVANCED_OPTIONS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_DOM_UI_ADVANCED_OPTIONS_HANDLER_H_ |
6 #define CHROME_BROWSER_DOM_UI_ADVANCED_OPTIONS_HANDLER_H_ | 6 #define CHROME_BROWSER_DOM_UI_ADVANCED_OPTIONS_HANDLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/dom_ui/options_ui.h" | 9 #include "chrome/browser/dom_ui/options_ui.h" |
10 #include "chrome/browser/pref_member.h" | 10 #include "chrome/browser/pref_member.h" |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 // an appropriate certificate management action based on the platform. | 65 // an appropriate certificate management action based on the platform. |
66 void ShowManageSSLCertificates(const ListValue* args); | 66 void ShowManageSSLCertificates(const ListValue* args); |
67 #endif | 67 #endif |
68 | 68 |
69 // Setup the download path based on user preferences. | 69 // Setup the download path based on user preferences. |
70 void SetupDownloadLocationPath(); | 70 void SetupDownloadLocationPath(); |
71 | 71 |
72 // Setup the enabled state of the reset button. | 72 // Setup the enabled state of the reset button. |
73 void SetupAutoOpenFileTypesDisabledAttribute(); | 73 void SetupAutoOpenFileTypesDisabledAttribute(); |
74 | 74 |
75 // Setup the enabled state of the proxy settings button. | 75 // Setup the proxy settings section UI. |
76 void SetupProxySettingsDisabledAttribute(); | 76 void SetupProxySettingsSection(); |
77 | 77 |
78 #if defined(OS_WIN) | 78 #if defined(OS_WIN) |
79 // Setup the checked state SSL related checkboxes. | 79 // Setup the checked state SSL related checkboxes. |
80 void SetupSSLConfigSettings(); | 80 void SetupSSLConfigSettings(); |
81 #endif | 81 #endif |
82 | 82 |
83 scoped_refptr<SelectFileDialog> select_folder_dialog_; | 83 scoped_refptr<SelectFileDialog> select_folder_dialog_; |
84 FilePathPrefMember default_download_location_; | 84 FilePathPrefMember default_download_location_; |
85 StringPrefMember auto_open_files_; | 85 StringPrefMember auto_open_files_; |
86 scoped_ptr<PrefSetObserver> proxy_prefs_; | 86 scoped_ptr<PrefSetObserver> proxy_prefs_; |
87 scoped_ptr<OptionsManagedBannerHandler> banner_handler_; | 87 scoped_ptr<OptionsManagedBannerHandler> banner_handler_; |
88 | 88 |
89 DISALLOW_COPY_AND_ASSIGN(AdvancedOptionsHandler); | 89 DISALLOW_COPY_AND_ASSIGN(AdvancedOptionsHandler); |
90 }; | 90 }; |
91 | 91 |
92 #endif // CHROME_BROWSER_DOM_UI_ADVANCED_OPTIONS_HANDLER_H_ | 92 #endif // CHROME_BROWSER_DOM_UI_ADVANCED_OPTIONS_HANDLER_H_ |
OLD | NEW |