Index: chrome/browser/ui/webui/options2/chromeos/core_chromeos_options_handler.h |
diff --git a/chrome/browser/ui/webui/options2/chromeos/core_chromeos_options_handler.h b/chrome/browser/ui/webui/options2/chromeos/core_chromeos_options_handler.h |
deleted file mode 100644 |
index 7f8a29fc16f8103e7cf1ff2bf12fa2823c79fa27..0000000000000000000000000000000000000000 |
--- a/chrome/browser/ui/webui/options2/chromeos/core_chromeos_options_handler.h |
+++ /dev/null |
@@ -1,57 +0,0 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_CORE_CHROMEOS_OPTIONS_HANDLER_H_ |
-#define CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_CORE_CHROMEOS_OPTIONS_HANDLER_H_ |
- |
-#include "base/compiler_specific.h" |
-#include "base/memory/weak_ptr.h" |
-#include "chrome/browser/ui/webui/options2/core_options_handler.h" |
- |
-class PrefSetObserver; |
- |
-namespace chromeos { |
-namespace options { |
- |
-// CoreChromeOSOptionsHandler handles ChromeOS settings. |
-class CoreChromeOSOptionsHandler : public ::options::CoreOptionsHandler { |
- public: |
- CoreChromeOSOptionsHandler(); |
- virtual ~CoreChromeOSOptionsHandler(); |
- |
- // ::CoreOptionsHandler overrides |
- virtual base::Value* FetchPref(const std::string& pref_name) OVERRIDE; |
- virtual void InitializeHandler() OVERRIDE; |
- virtual void ObservePref(const std::string& pref_name) OVERRIDE; |
- virtual void SetPref(const std::string& pref_name, |
- const base::Value* value, |
- const std::string& metric) OVERRIDE; |
- virtual void StopObservingPref(const std::string& path) OVERRIDE; |
- |
- // OptionsPageUIHandler implementation. |
- virtual void GetLocalizedValues( |
- base::DictionaryValue* localized_strings) OVERRIDE; |
- |
- // content::NotificationObserver implementation. |
- virtual void Observe(int type, |
- const content::NotificationSource& source, |
- const content::NotificationDetails& details) OVERRIDE; |
- |
- private: |
- // Notifies registered JS callbacks on ChromeOS setting change. |
- void NotifySettingsChanged(const std::string* setting_name); |
- void NotifyProxyPrefsChanged(); |
- |
- // 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_; |
- base::WeakPtrFactory<CoreChromeOSOptionsHandler> pointer_factory_; |
-}; |
- |
-} // namespace options |
-} // namespace chromeos |
- |
-#endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_CHROMEOS_CORE_CHROMEOS_OPTIONS_HANDLER_H_ |