Index: public/platform/WebSpeechSynthesisUtterance.h |
diff --git a/public/platform/WebSpeechSynthesisUtterance.h b/public/platform/WebSpeechSynthesisUtterance.h |
index cd30a5733597dab78c582ce1e524fd80b123d7e2..c25e3bafde047ccfe3bdf0d58b6ef28f6cd5c925 100644 |
--- a/public/platform/WebSpeechSynthesisUtterance.h |
+++ b/public/platform/WebSpeechSynthesisUtterance.h |
@@ -30,10 +30,10 @@ |
#include "WebPrivatePtr.h" |
#include "WebString.h" |
-namespace blink { class PlatformSpeechSynthesisUtterance; } |
- |
namespace blink { |
+class PlatformSpeechSynthesisUtterance; |
+ |
class WebSpeechSynthesisUtterance { |
public: |
WebSpeechSynthesisUtterance() { } |
@@ -62,13 +62,13 @@ public: |
BLINK_PLATFORM_EXPORT double startTime() const; // In seconds. |
#if INSIDE_BLINK |
- BLINK_PLATFORM_EXPORT WebSpeechSynthesisUtterance(blink::PlatformSpeechSynthesisUtterance*); |
- BLINK_PLATFORM_EXPORT WebSpeechSynthesisUtterance& operator=(blink::PlatformSpeechSynthesisUtterance*); |
- BLINK_PLATFORM_EXPORT operator blink::PlatformSpeechSynthesisUtterance*() const; |
+ BLINK_PLATFORM_EXPORT WebSpeechSynthesisUtterance(PlatformSpeechSynthesisUtterance*); |
+ BLINK_PLATFORM_EXPORT WebSpeechSynthesisUtterance& operator=(PlatformSpeechSynthesisUtterance*); |
+ BLINK_PLATFORM_EXPORT operator PlatformSpeechSynthesisUtterance*() const; |
#endif |
private: |
- WebPrivatePtr<blink::PlatformSpeechSynthesisUtterance> m_private; |
+ WebPrivatePtr<PlatformSpeechSynthesisUtterance> m_private; |
}; |
} // namespace blink |