Chromium Code Reviews| 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 86948c19556b45c38deb2ac6fdaf48cdacdc2e2b..f293cf440854fdb30b1fad27d2ab13fa3870257f 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: |
| - InputTypeView(HTMLInputElement& element) : m_element(&element) { } |
| - HTMLInputElement& element() const { return *m_element; } |
| + InputTypeView(HTMLInputElement&); |
|
haraken
2015/11/19 01:37:26
Add explicit.
peria
2015/11/19 03:57:51
Done.
|
| + HTMLInputElement& element() const; |
| private: |
| // Not a RefPtr because the HTMLInputElement object owns this InputTypeView |