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..692cfbd2ff7d9b1e00f3477892d6204ef9a8f243 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; } |
+ explicit InputTypeView(HTMLInputElement&); |
+ HTMLInputElement& element() const; |
private: |
// Not a RefPtr because the HTMLInputElement object owns this InputTypeView |