| Index: Source/core/html/HTMLProgressElement.h
|
| diff --git a/Source/core/html/HTMLProgressElement.h b/Source/core/html/HTMLProgressElement.h
|
| index 5a4d6f101f27306a533c1d7ee94c1b32e23840f4..e9f624e4342f8b638b661ca50a7472c23898058e 100644
|
| --- a/Source/core/html/HTMLProgressElement.h
|
| +++ b/Source/core/html/HTMLProgressElement.h
|
| @@ -34,7 +34,7 @@ public:
|
| static const double IndeterminatePosition;
|
| static const double InvalidPosition;
|
|
|
| - static PassRefPtr<HTMLProgressElement> create(const QualifiedName&, Document*);
|
| + static PassRefPtr<HTMLProgressElement> create(const QualifiedName&, Document&);
|
|
|
| double value() const;
|
| void setValue(double, ExceptionState&);
|
| @@ -47,7 +47,7 @@ public:
|
| virtual bool canContainRangeEndPoint() const { return false; }
|
|
|
| private:
|
| - HTMLProgressElement(const QualifiedName&, Document*);
|
| + HTMLProgressElement(const QualifiedName&, Document&);
|
| virtual ~HTMLProgressElement();
|
|
|
| virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; }
|
|
|