| 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_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "chrome/browser/ui/webui/options/options_ui.h" | 13 #include "chrome/browser/ui/webui/options/options_ui.h" |
| 14 #include "ui/gfx/native_widget_types.h" | 14 #include "ui/gfx/native_widget_types.h" |
| 15 | 15 |
| 16 class Browser; | |
| 17 class PrefService; | 16 class PrefService; |
| 18 | 17 |
| 19 namespace gfx { | |
| 20 class ImageSkia; | |
| 21 } | |
| 22 | |
| 23 namespace views { | |
| 24 class WidgetDelegate; | |
| 25 } | |
| 26 | |
| 27 namespace chromeos { | 18 namespace chromeos { |
| 28 namespace options { | 19 namespace options { |
| 29 | 20 |
| 30 // ChromeOS internet options page UI handler. | 21 // ChromeOS internet options page UI handler. |
| 31 class InternetOptionsHandler : public ::options::OptionsPageUIHandler { | 22 class InternetOptionsHandler : public ::options::OptionsPageUIHandler { |
| 32 public: | 23 public: |
| 33 InternetOptionsHandler(); | 24 InternetOptionsHandler(); |
| 34 ~InternetOptionsHandler() override; | 25 ~InternetOptionsHandler() override; |
| 35 | 26 |
| 36 private: | 27 private: |
| (...skipping 23 matching lines...) Expand all Loading... |
| 60 // of this object. | 51 // of this object. |
| 61 base::WeakPtrFactory<InternetOptionsHandler> weak_factory_; | 52 base::WeakPtrFactory<InternetOptionsHandler> weak_factory_; |
| 62 | 53 |
| 63 DISALLOW_COPY_AND_ASSIGN(InternetOptionsHandler); | 54 DISALLOW_COPY_AND_ASSIGN(InternetOptionsHandler); |
| 64 }; | 55 }; |
| 65 | 56 |
| 66 } // namespace options | 57 } // namespace options |
| 67 } // namespace chromeos | 58 } // namespace chromeos |
| 68 | 59 |
| 69 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ | 60 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ |
| OLD | NEW |