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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 // can support manual handling on Windows. | 70 // can support manual handling on Windows. |
71 void HandleCheckRevocationCheckbox(const ListValue* args); | 71 void HandleCheckRevocationCheckbox(const ListValue* args); |
72 | 72 |
73 // Callback for the "Use SSL3" checkbox. This is needed so we can support | 73 // Callback for the "Use SSL3" checkbox. This is needed so we can support |
74 // manual handling on Windows. | 74 // manual handling on Windows. |
75 void HandleUseSSL3Checkbox(const ListValue* args); | 75 void HandleUseSSL3Checkbox(const ListValue* args); |
76 | 76 |
77 // Callback for the "Use TLS1" checkbox. This is needed so we can support | 77 // Callback for the "Use TLS1" checkbox. This is needed so we can support |
78 // manual handling on Windows. | 78 // manual handling on Windows. |
79 void HandleUseTLS1Checkbox(const ListValue* args); | 79 void HandleUseTLS1Checkbox(const ListValue* args); |
80 | |
81 // Callback for the "Show Gears Settings" button. | |
82 void HandleShowGearsSettings(const ListValue* args); | |
83 #endif | 80 #endif |
84 | 81 |
85 #if !defined(OS_CHROMEOS) | 82 #if !defined(OS_CHROMEOS) |
86 // Callback for the "showNetworkProxySettings" message. This will invoke | 83 // Callback for the "showNetworkProxySettings" message. This will invoke |
87 // an appropriate dialog for configuring proxy settings. | 84 // an appropriate dialog for configuring proxy settings. |
88 void ShowNetworkProxySettings(const ListValue* args); | 85 void ShowNetworkProxySettings(const ListValue* args); |
89 #endif | 86 #endif |
90 | 87 |
91 #if !defined(USE_NSS) | 88 #if !defined(USE_NSS) |
92 // Callback for the "showManageSSLCertificates" message. This will invoke | 89 // Callback for the "showManageSSLCertificates" message. This will invoke |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 StringPrefMember auto_open_files_; | 171 StringPrefMember auto_open_files_; |
175 IntegerPrefMember default_font_size_; | 172 IntegerPrefMember default_font_size_; |
176 IntegerPrefMember default_fixed_font_size_; | 173 IntegerPrefMember default_fixed_font_size_; |
177 scoped_ptr<PrefSetObserver> proxy_prefs_; | 174 scoped_ptr<PrefSetObserver> proxy_prefs_; |
178 scoped_ptr<OptionsManagedBannerHandler> banner_handler_; | 175 scoped_ptr<OptionsManagedBannerHandler> banner_handler_; |
179 | 176 |
180 DISALLOW_COPY_AND_ASSIGN(AdvancedOptionsHandler); | 177 DISALLOW_COPY_AND_ASSIGN(AdvancedOptionsHandler); |
181 }; | 178 }; |
182 | 179 |
183 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_ADVANCED_OPTIONS_HANDLER_H_ | 180 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_ADVANCED_OPTIONS_HANDLER_H_ |
OLD | NEW |