Chromium Code Reviews| Index: chrome/browser/chromeos/power/power_prefs.h |
| diff --git a/chrome/browser/chromeos/power/power_prefs.h b/chrome/browser/chromeos/power/power_prefs.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6f08243786255ef0796e654fcbc295b1201c7395 |
| --- /dev/null |
| +++ b/chrome/browser/chromeos/power/power_prefs.h |
| @@ -0,0 +1,59 @@ |
| +// Copyright (c) 2013 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_CHROMEOS_POWER_POWER_PREFS_H_ |
| +#define CHROME_BROWSER_CHROMEOS_POWER_POWER_PREFS_H_ |
| + |
| +#include "base/basictypes.h" |
| +#include "base/compiler_specific.h" |
| +#include "base/memory/scoped_ptr.h" |
| +#include "content/public/browser/notification_observer.h" |
| +#include "content/public/browser/notification_registrar.h" |
| + |
| +class PrefChangeRegistrar; |
| +class Profile; |
| + |
| +namespace user_prefs { |
| +class PrefRegistrySyncable; |
| +} |
| + |
| +namespace chromeos { |
| + |
| +class PowerPolicyController; |
| + |
| +class PowerPrefs : public content::NotificationObserver { |
| + public: |
| + // Sends an updated power policy to the |power_policy_controller| whenever one |
| + // of the power-related prefs changes. |
|
Daniel Erat
2013/07/01 14:29:05
nit: the style guide implies that class comments s
bartfab (slow)
2013/07/01 14:53:08
Oops. No idea how the comment slipped down here. D
|
| + explicit PowerPrefs(PowerPolicyController* power_policy_controller); |
| + virtual ~PowerPrefs(); |
| + |
| + static void RegisterUserPrefs(user_prefs::PrefRegistrySyncable* registry, |
| + bool for_signin_profile); |
| + |
| + // content::NotificationObserver: |
| + virtual void Observe(int type, |
| + const content::NotificationSource& source, |
| + const content::NotificationDetails& details) OVERRIDE; |
| + |
| + void UpdatePowerPolicyFromPrefs(); |
| + |
| + private: |
| + friend class PowerPrefsTest; |
| + |
| + void SetProfile(Profile* profile); |
| + |
| + PowerPolicyController* power_policy_controller_; // Not owned. |
| + |
| + content::NotificationRegistrar notification_registrar_; |
| + |
| + Profile* profile_; // Not owned. |
| + scoped_ptr<PrefChangeRegistrar> pref_change_registrar_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(PowerPrefs); |
| +}; |
| + |
| +} // namespace chromeos |
| + |
| +#endif // CHROME_BROWSER_CHROMEOS_POWER_POWER_PREFS_H_ |