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

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

Issue 217053009: Validate finiteness of HTMLMediaElement properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add more FIXMEs. 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.idl ('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 eb391a976eb4c000120996fbdba526317140d460..27e1c64bd59d44a047d5ea534a2f1da23d71cf37 100644
--- a/Source/core/html/MediaController.h
+++ b/Source/core/html/MediaController.h
@@ -67,10 +67,10 @@ public:
void unpause();
double defaultPlaybackRate() const { return m_defaultPlaybackRate; }
- void setDefaultPlaybackRate(double);
+ void setDefaultPlaybackRate(double, ExceptionState&);
double playbackRate() const;
- void setPlaybackRate(double);
+ void setPlaybackRate(double, ExceptionState&);
double volume() const { return m_volume; }
void setVolume(double, ExceptionState&);
« no previous file with comments | « Source/core/html/HTMLMediaElement.idl ('k') | Source/core/html/MediaController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698