| Index: Source/core/html/HTMLMediaElement.h
|
| diff --git a/Source/core/html/HTMLMediaElement.h b/Source/core/html/HTMLMediaElement.h
|
| index 040d20fdcca84c32e199009da0716ee8fa50ae17..8ad82b882a935ee937376f787789e70f5038ce88 100644
|
| --- a/Source/core/html/HTMLMediaElement.h
|
| +++ b/Source/core/html/HTMLMediaElement.h
|
| @@ -113,7 +113,7 @@ public:
|
| String preload() const;
|
| void setPreload(const AtomicString&);
|
|
|
| - virtual PassRefPtr<TimeRanges> buffered() const OVERRIDE FINAL;
|
| + PassRefPtr<TimeRanges> buffered() const;
|
| void load();
|
| String canPlayType(const String& mimeType, const String& keySystem = String()) const;
|
|
|
| @@ -127,13 +127,13 @@ public:
|
| virtual void setCurrentTime(double, ExceptionState&) OVERRIDE FINAL;
|
| virtual double duration() const OVERRIDE FINAL;
|
| virtual bool paused() const OVERRIDE FINAL;
|
| - virtual double defaultPlaybackRate() const OVERRIDE FINAL;
|
| - virtual void setDefaultPlaybackRate(double) OVERRIDE FINAL;
|
| - virtual double playbackRate() const OVERRIDE FINAL;
|
| - virtual void setPlaybackRate(double) OVERRIDE FINAL;
|
| + double defaultPlaybackRate() const;
|
| + void setDefaultPlaybackRate(double);
|
| + double playbackRate() const;
|
| + void setPlaybackRate(double);
|
| void updatePlaybackRate();
|
| - virtual PassRefPtr<TimeRanges> played() OVERRIDE FINAL;
|
| - virtual PassRefPtr<TimeRanges> seekable() const OVERRIDE FINAL;
|
| + PassRefPtr<TimeRanges> played();
|
| + PassRefPtr<TimeRanges> seekable() const;
|
| bool ended() const;
|
| bool autoplay() const;
|
| bool loop() const;
|
| @@ -247,7 +247,7 @@ public:
|
|
|
| bool hasSingleSecurityOrigin() const { return !m_player || m_player->hasSingleSecurityOrigin(); }
|
|
|
| - virtual bool isFullscreen() const OVERRIDE FINAL;
|
| + bool isFullscreen() const;
|
| virtual void enterFullscreen() OVERRIDE FINAL;
|
| void exitFullscreen();
|
|
|
| @@ -450,7 +450,6 @@ private:
|
| void updateMediaController();
|
| bool isBlocked() const;
|
| bool isBlockedOnMediaController() const;
|
| - virtual bool hasCurrentSrc() const OVERRIDE FINAL { return !m_currentSrc.isEmpty(); }
|
| bool isAutoplaying() const { return m_autoplaying; }
|
|
|
| // Currently we have both EME v0.1b and EME WD implemented in media element.
|
|
|