| 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;
|
|
|