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

Side by Side Diff: chrome/browser/ui/webui/options/chromeos/internet_options_handler.h

Issue 7867044: PART1: Initiated the SignedSettings refactoring. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ckleaned up values.cc and profile_impl.cc that has creeped from the rebase back in. Created 9 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_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 "chrome/browser/chromeos/cros/network_library.h" 10 #include "chrome/browser/chromeos/cros/network_library.h"
11 #include "chrome/browser/chromeos/proxy_cros_settings_provider.h" 11 #include "chrome/browser/chromeos/proxy_cros_settings_provider.h"
12 #include "chrome/browser/ui/webui/options/chromeos/cros_options_page_ui_handler. h" 12 #include "chrome/browser/ui/webui/options/options_ui.h"
13 #include "content/common/notification_registrar.h" 13 #include "content/common/notification_registrar.h"
14 #include "ui/gfx/native_widget_types.h" 14 #include "ui/gfx/native_widget_types.h"
15 15
16 class SkBitmap; 16 class SkBitmap;
17 namespace views { 17 namespace views {
18 class WidgetDelegate; 18 class WidgetDelegate;
19 } 19 }
20 20
21 // ChromeOS internet options page UI handler. 21 // ChromeOS internet options page UI handler.
22 class InternetOptionsHandler 22 class InternetOptionsHandler
23 : public chromeos::CrosOptionsPageUIHandler, 23 : public OptionsPageUIHandler,
24 public chromeos::NetworkLibrary::NetworkManagerObserver, 24 public chromeos::NetworkLibrary::NetworkManagerObserver,
25 public chromeos::NetworkLibrary::NetworkObserver, 25 public chromeos::NetworkLibrary::NetworkObserver,
26 public chromeos::NetworkLibrary::CellularDataPlanObserver { 26 public chromeos::NetworkLibrary::CellularDataPlanObserver {
27 public: 27 public:
28 InternetOptionsHandler(); 28 InternetOptionsHandler();
29 virtual ~InternetOptionsHandler(); 29 virtual ~InternetOptionsHandler();
30 30
31 // OptionsPageUIHandler implementation. 31 // OptionsPageUIHandler implementation.
32 virtual void GetLocalizedValues(base::DictionaryValue* localized_strings); 32 virtual void GetLocalizedValues(base::DictionaryValue* localized_strings);
33 virtual void Initialize(); 33 virtual void Initialize();
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 chromeos::NetworkLibrary* cros_; 144 chromeos::NetworkLibrary* cros_;
145 145
146 NotificationRegistrar registrar_; 146 NotificationRegistrar registrar_;
147 147
148 chromeos::ProxyCrosSettingsProvider* proxy_settings_; 148 chromeos::ProxyCrosSettingsProvider* proxy_settings_;
149 149
150 DISALLOW_COPY_AND_ASSIGN(InternetOptionsHandler); 150 DISALLOW_COPY_AND_ASSIGN(InternetOptionsHandler);
151 }; 151 };
152 152
153 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ 153 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698