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

Unified Diff: Source/platform/speech/PlatformSpeechSynthesisUtterance.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/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*);

Powered by Google App Engine
This is Rietveld 408576698