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

Unified Diff: Source/core/platform/PlatformSpeechSynthesizer.h

Issue 20294002: Fix trailing whitespace in .cpp, .h, and .idl files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased 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
Index: Source/core/platform/PlatformSpeechSynthesizer.h
diff --git a/Source/core/platform/PlatformSpeechSynthesizer.h b/Source/core/platform/PlatformSpeechSynthesizer.h
index f1db25a4458e84317c564998956c6133fa652aee..3d1b81589a9421d83c4287484364fc53d57a2b6e 100644
--- a/Source/core/platform/PlatformSpeechSynthesizer.h
+++ b/Source/core/platform/PlatformSpeechSynthesizer.h
@@ -56,19 +56,19 @@ public:
protected:
virtual ~PlatformSpeechSynthesizerClient() { }
};
-
+
class PlatformSpeechSynthesizer {
public:
static PassOwnPtr<PlatformSpeechSynthesizer> create(PlatformSpeechSynthesizerClient*);
virtual ~PlatformSpeechSynthesizer();
-
+
const Vector<RefPtr<PlatformSpeechSynthesisVoice> >& voiceList() const { return m_voiceList; }
virtual void speak(PassRefPtr<PlatformSpeechSynthesisUtterance>);
virtual void pause();
virtual void resume();
virtual void cancel();
-
+
PlatformSpeechSynthesizerClient* client() const { return m_speechSynthesizerClient; }
void setVoiceList(Vector<RefPtr<PlatformSpeechSynthesisVoice> >&);
@@ -77,14 +77,14 @@ protected:
virtual void initializeVoiceList();
explicit PlatformSpeechSynthesizer(PlatformSpeechSynthesizerClient*);
Vector<RefPtr<PlatformSpeechSynthesisVoice> > m_voiceList;
-
+
private:
PlatformSpeechSynthesizerClient* m_speechSynthesizerClient;
OwnPtr<WebKit::WebSpeechSynthesizer> m_webSpeechSynthesizer;
OwnPtr<WebKit::WebSpeechSynthesizerClient> m_webSpeechSynthesizerClient;
};
-
+
} // namespace WebCore
#endif // PlatformSpeechSynthesizer_h
« no previous file with comments | « Source/core/platform/PlatformSpeechSynthesisVoice.cpp ('k') | Source/core/platform/PlatformSpeechSynthesizer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698