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

Unified Diff: Source/core/html/HTMLProgressElement.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/HTMLProgressElement.h
diff --git a/Source/core/html/HTMLProgressElement.h b/Source/core/html/HTMLProgressElement.h
index b70f26ea7ec261942e2a75946248b3af98982462..26f5e302038a32439adb8c76940735708cb1198d 100644
--- a/Source/core/html/HTMLProgressElement.h
+++ b/Source/core/html/HTMLProgressElement.h
@@ -37,10 +37,10 @@ public:
static PassRefPtr<HTMLProgressElement> create(Document&);
double value() const;
- void setValue(double, ExceptionState&);
+ void setValue(double);
double max() const;
- void setMax(double, ExceptionState&);
+ void setMax(double);
double position() const;

Powered by Google App Engine
This is Rietveld 408576698