| 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 2afa4610ebb7192d0ad2270c5e10402c0aba569e..288712fec82f96f21fe0ffa0fdf7661ed9bce2bf 100644
|
| --- a/chrome/browser/chromeos/cros/cros_library.h
|
| +++ b/chrome/browser/chromeos/cros/cros_library.h
|
| @@ -25,7 +25,6 @@ class MountLibrary;
|
| class NetworkLibrary;
|
| class PowerLibrary;
|
| class ScreenLockLibrary;
|
| -class SpeechSynthesisLibrary;
|
| class UpdateLibrary;
|
|
|
| // This class handles access to sub-parts of ChromeOS library. it provides
|
| @@ -54,7 +53,6 @@ class CrosLibrary {
|
| void SetNetworkLibrary(NetworkLibrary* library, bool own);
|
| void SetPowerLibrary(PowerLibrary* library, bool own);
|
| void SetScreenLockLibrary(ScreenLockLibrary* library, bool own);
|
| - void SetSpeechSynthesisLibrary(SpeechSynthesisLibrary* library, bool own);
|
| void SetUpdateLibrary(UpdateLibrary* library, bool own);
|
|
|
| private:
|
| @@ -82,7 +80,6 @@ class CrosLibrary {
|
| NetworkLibrary* GetNetworkLibrary();
|
| PowerLibrary* GetPowerLibrary();
|
| ScreenLockLibrary* GetScreenLockLibrary();
|
| - SpeechSynthesisLibrary* GetSpeechSynthesisLibrary();
|
| UpdateLibrary* GetUpdateLibrary();
|
|
|
| // Getter for Test API that gives access to internal members of this class.
|
| @@ -155,7 +152,6 @@ class CrosLibrary {
|
| Library<NetworkLibrary> network_lib_;
|
| Library<PowerLibrary> power_lib_;
|
| Library<ScreenLockLibrary> screen_lock_lib_;
|
| - Library<SpeechSynthesisLibrary> speech_synthesis_lib_;
|
| Library<UpdateLibrary> update_lib_;
|
|
|
| // Stub implementations of the libraries should be used.
|
|
|