Index: Source/core/html/MediaControllerInterface.h |
diff --git a/Source/core/html/MediaControllerInterface.h b/Source/core/html/MediaControllerInterface.h |
index 739b0bbd66f890b039f5043aa66de0b4cc923c5b..0c5be824ad577c73d5dc11278340c8d12d6036ee 100644 |
--- a/Source/core/html/MediaControllerInterface.h |
+++ b/Source/core/html/MediaControllerInterface.h |
@@ -39,10 +39,6 @@ public: |
virtual double currentTime() const = 0; |
virtual void setCurrentTime(double, ExceptionState&) = 0; |
- virtual bool paused() const = 0; |
- virtual void play() = 0; |
- virtual void pause() = 0; |
- |
virtual double volume() const = 0; |
virtual void setVolume(double, ExceptionState&) = 0; |
@@ -50,8 +46,6 @@ public: |
virtual void setMuted(bool) = 0; |
virtual bool hasAudio() const = 0; |
- |
- virtual bool canPlay() const = 0; |
}; |
} |