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

Unified Diff: Source/modules/speech/SpeechSynthesisVoice.h

Issue 20300002: Fix trailing whitespace in .cpp, .h, and .idl files (ex. Source/core) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 | « Source/modules/speech/SpeechSynthesisUtterance.idl ('k') | Source/modules/speech/SpeechSynthesisVoice.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/speech/SpeechSynthesisVoice.h
diff --git a/Source/modules/speech/SpeechSynthesisVoice.h b/Source/modules/speech/SpeechSynthesisVoice.h
index 1664c1dc4ebb7998c146be9c90ccabd7b0ae8fd9..6d83d740222d13c585fed0dd01cd2b83f1e56355 100644
--- a/Source/modules/speech/SpeechSynthesisVoice.h
+++ b/Source/modules/speech/SpeechSynthesisVoice.h
@@ -38,18 +38,18 @@ class SpeechSynthesisVoice : public ScriptWrappable, public RefCounted<SpeechSyn
public:
virtual ~SpeechSynthesisVoice() { }
static PassRefPtr<SpeechSynthesisVoice> create(PassRefPtr<PlatformSpeechSynthesisVoice>);
-
+
const String& voiceURI() const { return m_platformVoice->voiceURI(); }
const String& name() const { return m_platformVoice->name(); }
const String& lang() const { return m_platformVoice->lang(); }
bool localService() const { return m_platformVoice->localService(); }
bool isDefault() const { return m_platformVoice->isDefault(); }
-
+
PlatformSpeechSynthesisVoice* platformVoice() const { return m_platformVoice.get(); }
private:
explicit SpeechSynthesisVoice(PassRefPtr<PlatformSpeechSynthesisVoice>);
-
+
RefPtr<PlatformSpeechSynthesisVoice> m_platformVoice;
};
« no previous file with comments | « Source/modules/speech/SpeechSynthesisUtterance.idl ('k') | Source/modules/speech/SpeechSynthesisVoice.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698