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

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

Issue 7867044: PART1: Initiated the SignedSettings refactoring. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Final rebase to ToT before hitting the CQ. Created 9 years, 1 month 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
diff --git a/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h b/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h
index 3d76bd5fe61442fc8815491632d2c7260b32e5c9..d2dd5eac76386777c294abfac5efe0e5bbda334e 100644
--- a/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h
+++ b/chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h
@@ -22,17 +22,17 @@ class CoreChromeOSOptionsHandler : public CoreOptionsHandler {
protected:
// ::CoreOptionsHandler overrides
virtual void Initialize();
- virtual base::Value* FetchPref(const std::string& pref_name);
- virtual void ObservePref(const std::string& pref_name);
+ virtual base::Value* FetchPref(const std::string& pref_name) 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);
- virtual void StopObservingPref(const std::string& path);
+ const std::string& metric) OVERRIDE;
+ virtual void StopObservingPref(const std::string& path) OVERRIDE;
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details);
+ const content::NotificationDetails& details) OVERRIDE;
private:
// Notifies registered JS callbacks on ChromeOS setting change.

Powered by Google App Engine
This is Rietveld 408576698