| Index: third_party/WebKit/Source/core/html/forms/InputTypeView.h
|
| diff --git a/third_party/WebKit/Source/core/html/forms/InputTypeView.h b/third_party/WebKit/Source/core/html/forms/InputTypeView.h
|
| index 692cfbd2ff7d9b1e00f3477892d6204ef9a8f243..86948c19556b45c38deb2ac6fdaf48cdacdc2e2b 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/InputTypeView.h
|
| +++ b/third_party/WebKit/Source/core/html/forms/InputTypeView.h
|
| @@ -125,8 +125,8 @@ public:
|
| virtual bool hasFallbackContent() const { return false; }
|
|
|
| protected:
|
| - explicit InputTypeView(HTMLInputElement&);
|
| - HTMLInputElement& element() const;
|
| + InputTypeView(HTMLInputElement& element) : m_element(&element) { }
|
| + HTMLInputElement& element() const { return *m_element; }
|
|
|
| private:
|
| // Not a RefPtr because the HTMLInputElement object owns this InputTypeView
|
|
|