Chromium Code Reviews| 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*); |