| 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_BROWSER_OPTIONS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 // an appropriate dialog for configuring proxy settings. | 227 // an appropriate dialog for configuring proxy settings. |
| 228 void ShowNetworkProxySettings(const base::ListValue* args); | 228 void ShowNetworkProxySettings(const base::ListValue* args); |
| 229 #endif | 229 #endif |
| 230 | 230 |
| 231 #if !defined(USE_NSS) | 231 #if !defined(USE_NSS) |
| 232 // Callback for the "showManageSSLCertificates" message. This will invoke | 232 // Callback for the "showManageSSLCertificates" message. This will invoke |
| 233 // an appropriate certificate management action based on the platform. | 233 // an appropriate certificate management action based on the platform. |
| 234 void ShowManageSSLCertificates(const base::ListValue* args); | 234 void ShowManageSSLCertificates(const base::ListValue* args); |
| 235 #endif | 235 #endif |
| 236 | 236 |
| 237 #if defined(ENABLE_MDNS) | 237 #if defined(ENABLE_SERVICE_DISCOVERY) |
| 238 void ShowCloudPrintDevicesPage(const base::ListValue* args); | 238 void ShowCloudPrintDevicesPage(const base::ListValue* args); |
| 239 #endif | 239 #endif |
| 240 | 240 |
| 241 #if defined(ENABLE_FULL_PRINTING) | 241 #if defined(ENABLE_FULL_PRINTING) |
| 242 // Callback for the Cloud Print manage button. This will open a new | 242 // Callback for the Cloud Print manage button. This will open a new |
| 243 // tab pointed at the management URL. | 243 // tab pointed at the management URL. |
| 244 void ShowCloudPrintManagePage(const base::ListValue* args); | 244 void ShowCloudPrintManagePage(const base::ListValue* args); |
| 245 | 245 |
| 246 // Register localized values used by Cloud Print | 246 // Register localized values used by Cloud Print |
| 247 void RegisterCloudPrintValues(base::DictionaryValue* values); | 247 void RegisterCloudPrintValues(base::DictionaryValue* values); |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 | 357 |
| 358 // Used to get WeakPtr to self for use on the UI thread. | 358 // Used to get WeakPtr to self for use on the UI thread. |
| 359 base::WeakPtrFactory<BrowserOptionsHandler> weak_ptr_factory_; | 359 base::WeakPtrFactory<BrowserOptionsHandler> weak_ptr_factory_; |
| 360 | 360 |
| 361 DISALLOW_COPY_AND_ASSIGN(BrowserOptionsHandler); | 361 DISALLOW_COPY_AND_ASSIGN(BrowserOptionsHandler); |
| 362 }; | 362 }; |
| 363 | 363 |
| 364 } // namespace options | 364 } // namespace options |
| 365 | 365 |
| 366 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ | 366 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ |
| OLD | NEW |