| Index: Source/core/html/HTMLOListElement.h
|
| diff --git a/Source/core/html/HTMLOListElement.h b/Source/core/html/HTMLOListElement.h
|
| index 76859003be5cfeb397e29ba7d17f84a197c64566..130a7940a10ebadcd4e71d8fe2c51fd9eff0b042 100644
|
| --- a/Source/core/html/HTMLOListElement.h
|
| +++ b/Source/core/html/HTMLOListElement.h
|
| @@ -29,8 +29,8 @@ namespace WebCore {
|
|
|
| class HTMLOListElement FINAL : public HTMLElement {
|
| public:
|
| - static PassRefPtr<HTMLOListElement> create(Document*);
|
| - static PassRefPtr<HTMLOListElement> create(const QualifiedName&, Document*);
|
| + static PassRefPtr<HTMLOListElement> create(Document&);
|
| + static PassRefPtr<HTMLOListElement> create(const QualifiedName&, Document&);
|
|
|
| int start() const { return m_hasExplicitStart ? m_start : (m_isReversed ? itemCount() : 1); }
|
| void setStart(int);
|
| @@ -40,7 +40,7 @@ public:
|
| void itemCountChanged() { m_shouldRecalculateItemCount = true; }
|
|
|
| private:
|
| - HTMLOListElement(const QualifiedName&, Document*);
|
| + HTMLOListElement(const QualifiedName&, Document&);
|
|
|
| void updateItemValues();
|
|
|
|
|