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

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

Issue 217103004: Ignore MediaController in the muted/volume controls logic (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: repaint in updateVolume Created 6 years, 9 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 | « Source/core/html/HTMLMediaElement.cpp ('k') | Source/core/html/MediaController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/MediaController.h
diff --git a/Source/core/html/MediaController.h b/Source/core/html/MediaController.h
index 484b37fc8f9fcf4576dbd32301d0a3ac6c782d8a..eb391a976eb4c000120996fbdba526317140d460 100644
--- a/Source/core/html/MediaController.h
+++ b/Source/core/html/MediaController.h
@@ -72,11 +72,11 @@ public:
double playbackRate() const;
void setPlaybackRate(double);
- virtual double volume() const OVERRIDE { return m_volume; }
- virtual void setVolume(double, ExceptionState&) OVERRIDE;
+ double volume() const { return m_volume; }
+ void setVolume(double, ExceptionState&);
- virtual bool muted() const OVERRIDE { return m_muted; }
- virtual void setMuted(bool) OVERRIDE;
+ bool muted() const { return m_muted; }
+ void setMuted(bool);
typedef HTMLMediaElement::ReadyState ReadyState;
ReadyState readyState() const { return m_readyState; }
@@ -84,8 +84,6 @@ public:
enum PlaybackState { WAITING, PLAYING, ENDED };
const AtomicString& playbackState() const;
- virtual bool hasAudio() const OVERRIDE;
-
bool isRestrained() const;
bool isBlocked() const;
« no previous file with comments | « Source/core/html/HTMLMediaElement.cpp ('k') | Source/core/html/MediaController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698