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

Unified Diff: chrome/browser/chromeos/cros/cros_library.h

Issue 1775006: Adding speech synthesis library to access TTS feature in libcros. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 8 months 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/cros/cros_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/cros_library.h
===================================================================
--- chrome/browser/chromeos/cros/cros_library.h (revision 45736)
+++ chrome/browser/chromeos/cros/cros_library.h (working copy)
@@ -18,6 +18,7 @@
class MountLibrary;
class NetworkLibrary;
class PowerLibrary;
+class SpeechSynthesisLibrary;
class SynapticsLibrary;
// This class handles access to sub-parts of ChromeOS library. it provides
@@ -47,6 +48,8 @@
void SetNetworkLibrary(NetworkLibrary* library, bool own);
// Setter for PowerLibrary.
void SetPowerLibrary(PowerLibrary* library, bool own);
+ // Setter for SpeechSynthesisLibrary.
+ void SetSpeechSynthesisLibrary(SpeechSynthesisLibrary* library, bool own);
// Setter for SynapticsLibrary.
void SetSynapticsLibrary(SynapticsLibrary* library, bool own);
@@ -77,6 +80,9 @@
// Getter for PowerLibrary
PowerLibrary* GetPowerLibrary();
+ // This gets the singleton SpeechSynthesisLibrary.
+ SpeechSynthesisLibrary* GetSpeechSynthesisLibrary();
+
// This gets the singleton SynapticsLibrary.
SynapticsLibrary* GetSynapticsLibrary();
@@ -106,6 +112,7 @@
MountLibrary* mount_lib_;
NetworkLibrary* network_lib_;
PowerLibrary* power_lib_;
+ SpeechSynthesisLibrary* speech_synthesis_lib_;
SynapticsLibrary* synaptics_lib_;
bool own_library_loader_;
@@ -115,6 +122,7 @@
bool own_mount_loader_;
bool own_network_loader_;
bool own_power_loader_;
+ bool own_speech_synthesis_library_;
bool own_synaptics_library_;
// True if libcros was successfully loaded.
« no previous file with comments | « no previous file | chrome/browser/chromeos/cros/cros_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698