Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Unified Diff: Source/core/html/HTMLMediaElement.h

Issue 156173003: Remove unused parts of MediaControllerInterface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/html/MediaController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « no previous file | Source/core/html/MediaController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698