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

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

Issue 214793005: Use HTMLMediaElement::togglePlayState() where appropriate (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: documentation 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/MediaController.cpp ('k') | Source/core/html/MediaDocument.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
}
« no previous file with comments | « Source/core/html/MediaController.cpp ('k') | Source/core/html/MediaDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698