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

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 LayoutTests. 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
Index: Source/core/html/MediaController.h
diff --git a/Source/core/html/MediaController.h b/Source/core/html/MediaController.h
index 484b37fc8f9fcf4576dbd32301d0a3ac6c782d8a..b610dcdf561abc6bb78f7e4a465f86aa63a0b873 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&);
virtual double volume() const OVERRIDE { return m_volume; }
virtual void setVolume(double, ExceptionState&) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698