Chromium Code Reviews| Index: Source/platform/graphics/media/MediaPlayer.h |
| diff --git a/Source/platform/graphics/media/MediaPlayer.h b/Source/platform/graphics/media/MediaPlayer.h |
| index 72ec05b9006658f574f02ce8a7ba794c08bce763..e1a28872438a9cc4711c089637d57ccae94547db 100644 |
| --- a/Source/platform/graphics/media/MediaPlayer.h |
| +++ b/Source/platform/graphics/media/MediaPlayer.h |
| @@ -117,9 +117,7 @@ public: |
| virtual void pause() = 0; |
| virtual bool supportsSave() const = 0; |
| - virtual IntSize naturalSize() const = 0; |
| - virtual bool hasVideo() const = 0; |
| virtual bool hasAudio() const = 0; |
|
acolwell GONE FROM CHROMIUM
2014/05/20 16:40:21
Please remove this as well so that both hasXXX met
|
| virtual double duration() const = 0; |
| @@ -160,15 +158,10 @@ public: |
| virtual bool hasSingleSecurityOrigin() const = 0; |
| - virtual bool didPassCORSAccessCheck() const = 0; |
| - |
| // Time value in the movie's time scale. It is only necessary to override this if the media |
| // engine uses rational numbers to represent media time. |
| virtual double mediaTimeForTimeValue(double timeValue) const = 0; |
| - virtual unsigned decodedFrameCount() const = 0; |
| - virtual unsigned droppedFrameCount() const = 0; |
| - virtual unsigned corruptedFrameCount() const = 0; |
| virtual unsigned audioDecodedByteCount() const = 0; |
| virtual unsigned videoDecodedByteCount() const = 0; |
|
acolwell GONE FROM CHROMIUM
2014/05/20 16:40:21
Please remove these two as well so that all the st
|