Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(458)

Unified Diff: third_party/WebKit/Source/core/html/forms/InputTypeView.h

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698