Chromium Code Reviews| Index: Source/platform/speech/PlatformSpeechSynthesisUtterance.h |
| diff --git a/Source/core/platform/PlatformSpeechSynthesisUtterance.h b/Source/platform/speech/PlatformSpeechSynthesisUtterance.h |
| similarity index 92% |
| rename from Source/core/platform/PlatformSpeechSynthesisUtterance.h |
| rename to Source/platform/speech/PlatformSpeechSynthesisUtterance.h |
| index 7d1dee271fbaf4743c0fdae292d6df02bf6bde51..29d6aef237a2102652f96728ece56d92911789ee 100644 |
| --- a/Source/core/platform/PlatformSpeechSynthesisUtterance.h |
| +++ b/Source/platform/speech/PlatformSpeechSynthesisUtterance.h |
| @@ -26,21 +26,22 @@ |
| #ifndef PlatformSpeechSynthesisUtterance_h |
| #define PlatformSpeechSynthesisUtterance_h |
| -#include "core/platform/PlatformSpeechSynthesisVoice.h" |
| +#include "platform/PlatformExport.h" |
| +#include "platform/speech/PlatformSpeechSynthesisVoice.h" |
| #include "wtf/PassRefPtr.h" |
| #include "wtf/RefCounted.h" |
| #include "wtf/text/WTFString.h" |
| namespace WebCore { |
| -class PlatformSpeechSynthesisUtteranceClient { |
| +class PLATFORM_EXPORT PlatformSpeechSynthesisUtteranceClient { |
|
abarth-chromium
2013/12/09 17:39:51
This class is entirely inline. You don't need to
|
| public: |
| // Implement methods as needed. |
| protected: |
| virtual ~PlatformSpeechSynthesisUtteranceClient() { } |
| }; |
| -class PlatformSpeechSynthesisUtterance : public RefCounted<PlatformSpeechSynthesisUtterance> { |
| +class PLATFORM_EXPORT PlatformSpeechSynthesisUtterance : public RefCounted<PlatformSpeechSynthesisUtterance> { |
| public: |
| static PassRefPtr<PlatformSpeechSynthesisUtterance> create(PlatformSpeechSynthesisUtteranceClient*); |