Index: Source/core/html/MediaController.h |
diff --git a/Source/core/html/MediaController.h b/Source/core/html/MediaController.h |
index 196d419df8182c6e984e836a61e504e9a5ddf82b..c1edff40fc2cc908549b59b4027afacba66e78d0 100644 |
--- a/Source/core/html/MediaController.h |
+++ b/Source/core/html/MediaController.h |
@@ -29,6 +29,7 @@ |
#include "bindings/v8/ScriptWrappable.h" |
#include "core/events/Event.h" |
#include "core/events/EventTarget.h" |
+#include "core/html/HTMLMediaElement.h" |
#include "core/html/MediaControllerInterface.h" |
#include "platform/Timer.h" |
#include "wtf/PassRefPtr.h" |
@@ -80,7 +81,8 @@ public: |
virtual bool muted() const OVERRIDE { return m_muted; } |
virtual void setMuted(bool) OVERRIDE; |
- virtual ReadyState readyState() const OVERRIDE { return m_readyState; } |
+ typedef HTMLMediaElement::ReadyState ReadyState; |
+ ReadyState readyState() const { return m_readyState; } |
enum PlaybackState { WAITING, PLAYING, ENDED }; |
const AtomicString& playbackState() const; |