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

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

Issue 110393002: Move PlatformSpeech stuff to platform/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years 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/platform/speech/PlatformSpeechSynthesizer.h
diff --git a/Source/core/platform/PlatformSpeechSynthesizer.h b/Source/platform/speech/PlatformSpeechSynthesizer.h
similarity index 94%
rename from Source/core/platform/PlatformSpeechSynthesizer.h
rename to Source/platform/speech/PlatformSpeechSynthesizer.h
index ced73ff9e6f6adb7adfb1b1a3bef4d1a7bd619ad..b41a108a56e5fe493fc1c22375dd6541b1650cef 100644
--- a/Source/core/platform/PlatformSpeechSynthesizer.h
+++ b/Source/platform/speech/PlatformSpeechSynthesizer.h
@@ -26,7 +26,8 @@
#ifndef PlatformSpeechSynthesizer_h
#define PlatformSpeechSynthesizer_h
-#include "core/platform/PlatformSpeechSynthesisVoice.h"
+#include "platform/PlatformExport.h"
+#include "platform/speech/PlatformSpeechSynthesisVoice.h"
#include "wtf/PassOwnPtr.h"
#include "wtf/Vector.h"
@@ -44,7 +45,7 @@ enum SpeechBoundary {
class PlatformSpeechSynthesisUtterance;
-class PlatformSpeechSynthesizerClient {
+class PLATFORM_EXPORT PlatformSpeechSynthesizerClient {
abarth-chromium 2013/12/09 17:39:51 This class is entirely inline. You don't need to
public:
virtual void didStartSpeaking(PassRefPtr<PlatformSpeechSynthesisUtterance>) = 0;
virtual void didFinishSpeaking(PassRefPtr<PlatformSpeechSynthesisUtterance>) = 0;
@@ -57,7 +58,7 @@ protected:
virtual ~PlatformSpeechSynthesizerClient() { }
};
-class PlatformSpeechSynthesizer {
+class PLATFORM_EXPORT PlatformSpeechSynthesizer {
public:
static PassOwnPtr<PlatformSpeechSynthesizer> create(PlatformSpeechSynthesizerClient*);

Powered by Google App Engine
This is Rietveld 408576698