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

Unified Diff: Source/core/html/forms/InputTypeView.cpp

Issue 21165005: Support author Shadow DOM for INPUT elements (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Test should work on Windows and Linux. Created 7 years, 3 months 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
« no previous file with comments | « Source/core/html/forms/InputTypeView.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/InputTypeView.cpp
diff --git a/Source/core/html/forms/InputTypeView.cpp b/Source/core/html/forms/InputTypeView.cpp
index bdfa27fd300fd7b6d22ac4b7419e0ee48623ef29..bbc1ba0c5b5d083b1fa59556fc53a70d10dc7697 100644
--- a/Source/core/html/forms/InputTypeView.cpp
+++ b/Source/core/html/forms/InputTypeView.cpp
@@ -34,6 +34,11 @@
namespace WebCore {
+PassRefPtr<InputTypeView> InputTypeView::create(HTMLInputElement* input)
+{
+ return adoptRef(new InputTypeView(input));
+}
+
InputTypeView::~InputTypeView()
{
}
« no previous file with comments | « Source/core/html/forms/InputTypeView.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698