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

Unified Diff: chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h

Issue 8102019: redesign and reimplement proxy config service and tracker, revise proxy ui on cros (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h
===================================================================
--- chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h (revision 106059)
+++ chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h (working copy)
@@ -8,6 +8,8 @@
#include "chrome/browser/ui/webui/options/core_options_handler.h"
+class PrefSetObserver;
+
namespace chromeos {
// CoreChromeOSOptionsHandler handles ChromeOS settings.
@@ -15,6 +17,9 @@
public:
CoreChromeOSOptionsHandler();
+ // ::CoreOptionsHandler overrides
+ virtual void Initialize();
xiyuan 2011/10/18 17:33:31 nit: Move this into "protected" or "private" secti
kuan 2011/10/18 20:32:47 Done. i moved to protected section.
+
protected:
// ::CoreOptionsHandler overrides
virtual Value* FetchPref(const std::string& pref_name);
@@ -36,6 +41,8 @@
// Keeps the track of change caused by the handler to make sure
// it does not signal itself again.
bool handling_change_;
+
+ scoped_ptr<PrefSetObserver> proxy_prefs_;
};
} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698