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 |