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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_PROXY_SETTINGS_UI_H_
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_PROXY_SETTINGS_UI_H_
8 #include "chrome/browser/ui/webui/options/options_ui.h"
9 #include "ui/web_dialogs/web_dialog_ui.h"
14 class CoreChromeOSOptionsHandler
;
18 // A WebUI to host proxy settings splitted from settings page for better
20 class ProxySettingsUI
: public ui::WebDialogUI
,
21 public ::options::OptionsPageUIHandlerHost
{
23 explicit ProxySettingsUI(content::WebUI
* web_ui
);
24 ~ProxySettingsUI() override
;
27 // Overridden from OptionsPageUIHandlerHost:
28 void InitializeHandlers() override
;
30 bool initialized_handlers_
;
32 options::ProxyHandler
* proxy_handler_
; // Weak ptr.
33 options::CoreChromeOSOptionsHandler
* core_handler_
; // WeakPtr.
35 DISALLOW_COPY_AND_ASSIGN(ProxySettingsUI
);
38 } // namespace chromeos
40 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_PROXY_SETTINGS_UI_H_