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

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

Issue 262753004: Replace all remaining IDL finitude type checks with [TypeChecking=Unrestricted] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove unnecessary code (std::isfinite not needed for long) Created 6 years, 8 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
Index: Source/core/html/MediaController.h
diff --git a/Source/core/html/MediaController.h b/Source/core/html/MediaController.h
index 472e6c341ae0525b888da498b2f9ec8215c928ba..5536b68dfae48a5b3f752c128c0a7b341412b105 100644
--- a/Source/core/html/MediaController.h
+++ b/Source/core/html/MediaController.h
@@ -63,10 +63,10 @@ public:
void unpause();
double defaultPlaybackRate() const { return m_defaultPlaybackRate; }
- void setDefaultPlaybackRate(double, ExceptionState&);
+ void setDefaultPlaybackRate(double);
double playbackRate() const;
- void setPlaybackRate(double, ExceptionState&);
+ void setPlaybackRate(double);
double volume() const { return m_volume; }
void setVolume(double, ExceptionState&);

Powered by Google App Engine
This is Rietveld 408576698