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

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

Issue 1774013: Adding speech synthesis library to access TTS feature in libcros. (Closed)
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
diff --git a/chrome/browser/chromeos/cros/cros_library.h b/chrome/browser/chromeos/cros/cros_library.h
index cfee217570e0acf0a862b0c9c261286825eec22a..95788833f3c00aa6d2efced1c98ab6827d7ea248 100644
--- a/chrome/browser/chromeos/cros/cros_library.h
+++ b/chrome/browser/chromeos/cros/cros_library.h
@@ -18,6 +18,7 @@ class LoginLibrary;
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 @@ class CrosLibrary {
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 @@ class CrosLibrary {
// Getter for PowerLibrary
PowerLibrary* GetPowerLibrary();
+ // This gets the singleton SpeechSynthesisLibrary.
+ SpeechSynthesisLibrary* GetSpeechSynthesisLibrary();
+
// This gets the singleton SynapticsLibrary.
SynapticsLibrary* GetSynapticsLibrary();
@@ -106,6 +112,7 @@ class CrosLibrary {
MountLibrary* mount_lib_;
NetworkLibrary* network_lib_;
PowerLibrary* power_lib_;
+ SpeechSynthesisLibrary* speech_synthesis_lib_;
SynapticsLibrary* synaptics_lib_;
bool own_library_loader_;
@@ -115,6 +122,7 @@ class CrosLibrary {
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