Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: chrome/browser/dom_ui/advanced_options_handler.h

Issue 2847061: Implement dom-ui proxy settings dialog for Linux/Windows.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/dom_ui/advanced_options_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/dom_ui/advanced_options_handler.h
===================================================================
--- chrome/browser/dom_ui/advanced_options_handler.h (revision 53818)
+++ chrome/browser/dom_ui/advanced_options_handler.h (working copy)
@@ -10,10 +10,6 @@
#include "chrome/browser/pref_member.h"
#include "chrome/browser/shell_dialogs.h"
-#if defined(OS_MACOSX)
-#include "chrome/browser/dom_ui/advanced_options_utils_mac.h"
-#endif
-
// Chrome advanced options page UI handler.
class AdvancedOptionsHandler
: public OptionsPageUIHandler,
@@ -57,6 +53,16 @@
void HandleUseSSL2Checkbox(const Value* value);
#endif
+#if !defined(OS_CHROMEOS)
+ // Callback for the "showNetworkProxySettings" message. This will invoke
+ // an appropriate dialog for configuring proxy settings.
+ void ShowNetworkProxySettings(const Value* value);
+
+ // Callback for the "showManageSSLCertificates" message. This will invoke
+ // an appropriate certificate management action based on the platform.
+ void ShowManageSSLCertificates(const Value* value);
+#endif
+
// Setup the download path based on user preferences.
void SetupDownloadLocationPath();
@@ -68,14 +74,6 @@
void SetupSSLConfigSettings();
#endif
- // Callback for the "showNetworkProxySettings" message. This will invoke
- // an appropriate dialog for configuring proxy settings.
- void ShowNetworkProxySettings(const Value* value);
-
- // Callback for the "showManageSSLCertificates" message. This will invoke
- // an appropriate certificate management action based on the platform.
- void ShowManageSSLCertificates(const Value* value);
-
scoped_refptr<SelectFileDialog> select_folder_dialog_;
FilePathPrefMember default_download_location_;
StringPrefMember auto_open_files_;
« no previous file with comments | « no previous file | chrome/browser/dom_ui/advanced_options_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698