Index: Source/core/html/HTMLMediaElement.h |
diff --git a/Source/core/html/HTMLMediaElement.h b/Source/core/html/HTMLMediaElement.h |
index 079bb89345588e306b6322d2e54dcb7d393c6ed4..040d20fdcca84c32e199009da0716ee8fa50ae17 100644 |
--- a/Source/core/html/HTMLMediaElement.h |
+++ b/Source/core/html/HTMLMediaElement.h |
@@ -118,7 +118,8 @@ public: |
String canPlayType(const String& mimeType, const String& keySystem = String()) const; |
// ready state |
- virtual ReadyState readyState() const OVERRIDE FINAL; |
+ enum ReadyState { HAVE_NOTHING, HAVE_METADATA, HAVE_CURRENT_DATA, HAVE_FUTURE_DATA, HAVE_ENOUGH_DATA }; |
+ ReadyState readyState() const; |
bool seeking() const; |
// playback state |