| Index: Source/core/html/HTMLMeterElement.h
|
| diff --git a/Source/core/html/HTMLMeterElement.h b/Source/core/html/HTMLMeterElement.h
|
| index 5df4c00e99a0eba62cffc5f61718bee954c00455..e815e60244243b3d218e402d2511c7b47fc5f948 100644
|
| --- a/Source/core/html/HTMLMeterElement.h
|
| +++ b/Source/core/html/HTMLMeterElement.h
|
| @@ -31,7 +31,7 @@ class RenderMeter;
|
|
|
| class HTMLMeterElement FINAL : public LabelableElement {
|
| public:
|
| - static PassRefPtr<HTMLMeterElement> create(const QualifiedName&, Document&);
|
| + static PassRefPtr<HTMLMeterElement> create(Document&);
|
|
|
| enum GaugeRegion {
|
| GaugeRegionOptimum,
|
| @@ -63,7 +63,7 @@ public:
|
| bool canContainRangeEndPoint() const { return false; }
|
|
|
| private:
|
| - HTMLMeterElement(const QualifiedName&, Document&);
|
| + explicit HTMLMeterElement(Document&);
|
| virtual ~HTMLMeterElement();
|
|
|
| virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; }
|
|
|