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

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

Issue 20294002: Fix trailing whitespace in .cpp, .h, and .idl files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years, 5 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.idl ('k') | Source/core/html/MediaDocument.h » ('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 d81283a4dc5cc7a41323fef8abb95de3caecfec0..8adb9c834244c1f215ce6d0468fe44421144087e 100644
--- a/Source/core/html/MediaControllerInterface.h
+++ b/Source/core/html/MediaControllerInterface.h
@@ -20,7 +20,7 @@
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef MediaControllerInterface_h
@@ -37,32 +37,32 @@ typedef int ExceptionCode;
class MediaControllerInterface {
public:
virtual ~MediaControllerInterface() { };
-
+
// MediaController IDL:
virtual PassRefPtr<TimeRanges> buffered() const = 0;
virtual PassRefPtr<TimeRanges> seekable() const = 0;
virtual PassRefPtr<TimeRanges> played() = 0;
-
+
virtual double duration() const = 0;
virtual double currentTime() const = 0;
virtual void setCurrentTime(double, ExceptionCode&) = 0;
-
+
virtual bool paused() const = 0;
virtual void play() = 0;
virtual void pause() = 0;
-
+
virtual double defaultPlaybackRate() const = 0;
virtual void setDefaultPlaybackRate(double) = 0;
-
+
virtual double playbackRate() const = 0;
virtual void setPlaybackRate(double) = 0;
-
+
virtual double volume() const = 0;
virtual void setVolume(double, ExceptionCode&) = 0;
-
+
virtual bool muted() const = 0;
virtual void setMuted(bool) = 0;
-
+
enum ReadyState { HAVE_NOTHING, HAVE_METADATA, HAVE_CURRENT_DATA, HAVE_FUTURE_DATA, HAVE_ENOUGH_DATA };
virtual ReadyState readyState() const = 0;
« no previous file with comments | « Source/core/html/MediaController.idl ('k') | Source/core/html/MediaDocument.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698