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

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

Issue 262753004: Replace all remaining IDL finitude type checks with [TypeChecking=Unrestricted] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased 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
« no previous file with comments | « Source/core/html/HTMLMediaElement.cpp ('k') | Source/core/html/HTMLMeterElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLMeterElement.h
diff --git a/Source/core/html/HTMLMeterElement.h b/Source/core/html/HTMLMeterElement.h
index b92860ab60b993c5fd00e905bab0d5cadcffb767..17c568c2a519cdcefee339f93342e2c16da71cde 100644
--- a/Source/core/html/HTMLMeterElement.h
+++ b/Source/core/html/HTMLMeterElement.h
@@ -39,23 +39,23 @@ public:
GaugeRegionEvenLessGood
};
+ double value() const;
+ void setValue(double);
+
double min() const;
- void setMin(double, ExceptionState&);
+ void setMin(double);
double max() const;
- void setMax(double, ExceptionState&);
-
- double value() const;
- void setValue(double, ExceptionState&);
+ void setMax(double);
double low() const;
- void setLow(double, ExceptionState&);
+ void setLow(double);
double high() const;
- void setHigh(double, ExceptionState&);
+ void setHigh(double);
double optimum() const;
- void setOptimum(double, ExceptionState&);
+ void setOptimum(double);
double valueRatio() const;
GaugeRegion gaugeRegion() const;
« no previous file with comments | « Source/core/html/HTMLMediaElement.cpp ('k') | Source/core/html/HTMLMeterElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698