| Index: chrome/browser/chromeos/cros/cros_library.h
|
| diff --git a/chrome/browser/chromeos/cros/cros_library.h b/chrome/browser/chromeos/cros/cros_library.h
|
| index 06048ba43313f985da373e941604f76617704640..ae16fa76161734aacffe8c53e5c415c7931733ae 100644
|
| --- a/chrome/browser/chromeos/cros/cros_library.h
|
| +++ b/chrome/browser/chromeos/cros/cros_library.h
|
| @@ -14,6 +14,7 @@
|
| #include "chrome/common/chrome_switches.h"
|
| namespace chromeos {
|
|
|
| +class BrightnessLibrary;
|
| class BurnLibrary;
|
| class CryptohomeLibrary;
|
| class KeyboardLibrary;
|
| @@ -50,6 +51,8 @@ class CrosLibrary {
|
| // when the CrosLibrary is deleted (or other mocks are set).
|
| // Setter for LibraryLoader.
|
| void SetLibraryLoader(LibraryLoader* loader, bool own);
|
| + // Setter for BrightnessLibrary.
|
| + void SetBrightnessLibrary(BrightnessLibrary* library, bool own);
|
| // Setter for BurnLibrary.
|
| void SetBurnLibrary(BurnLibrary* library, bool own);
|
| // Setter for CryptohomeLibrary.
|
| @@ -88,6 +91,9 @@ class CrosLibrary {
|
| // This gets the CrosLibrary.
|
| static CrosLibrary* Get();
|
|
|
| + // Getter for BrightnessLibrary.
|
| + BrightnessLibrary* GetBrightnessLibrary();
|
| +
|
| // Getter for BurnLibrary.
|
| BurnLibrary* GetBurnLibrary();
|
|
|
| @@ -190,6 +196,7 @@ class CrosLibrary {
|
| bool own_;
|
| };
|
|
|
| + Library<BrightnessLibrary> brightness_lib_;
|
| Library<BurnLibrary> burn_lib_;
|
| Library<CryptohomeLibrary> crypto_lib_;
|
| Library<KeyboardLibrary> keyboard_lib_;
|
|
|