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

Unified Diff: public/platform/WebSpeechSynthesisVoice.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: public/platform/WebSpeechSynthesisVoice.h
diff --git a/public/platform/WebSpeechSynthesisVoice.h b/public/platform/WebSpeechSynthesisVoice.h
index 43ea0f8ee574b06807ea8824b6d36521a8c7663b..62e9556bbea685dd96125b84f3da601b9fd5565e 100644
--- a/public/platform/WebSpeechSynthesisVoice.h
+++ b/public/platform/WebSpeechSynthesisVoice.h
@@ -38,7 +38,7 @@ namespace blink {
class WebSpeechSynthesisVoice {
public:
- BLINK_EXPORT WebSpeechSynthesisVoice();
+ BLINK_PLATFORM_EXPORT WebSpeechSynthesisVoice();
WebSpeechSynthesisVoice(const WebSpeechSynthesisVoice& other) { assign(other); }
~WebSpeechSynthesisVoice() { reset(); }
@@ -48,17 +48,17 @@ public:
return *this;
}
- BLINK_EXPORT void assign(const WebSpeechSynthesisVoice&);
- BLINK_EXPORT void reset();
+ BLINK_PLATFORM_EXPORT void assign(const WebSpeechSynthesisVoice&);
+ BLINK_PLATFORM_EXPORT void reset();
- BLINK_EXPORT void setVoiceURI(const WebString&);
- BLINK_EXPORT void setName(const WebString&);
- BLINK_EXPORT void setLanguage(const WebString&);
- BLINK_EXPORT void setIsLocalService(bool);
- BLINK_EXPORT void setIsDefault(bool);
+ BLINK_PLATFORM_EXPORT void setVoiceURI(const WebString&);
+ BLINK_PLATFORM_EXPORT void setName(const WebString&);
+ BLINK_PLATFORM_EXPORT void setLanguage(const WebString&);
+ BLINK_PLATFORM_EXPORT void setIsLocalService(bool);
+ BLINK_PLATFORM_EXPORT void setIsDefault(bool);
-#if BLINK_IMPLEMENTATION
- operator WTF::PassRefPtr<WebCore::PlatformSpeechSynthesisVoice>() const;
+#if INSIDE_BLINK
+ BLINK_PLATFORM_EXPORT operator WTF::PassRefPtr<WebCore::PlatformSpeechSynthesisVoice>() const;
#endif
private:

Powered by Google App Engine
This is Rietveld 408576698