summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/html/forms/TextInputType.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/html/forms/TextInputType.cpp')
-rw-r--r--chromium/third_party/WebKit/Source/core/html/forms/TextInputType.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/WebKit/Source/core/html/forms/TextInputType.cpp b/chromium/third_party/WebKit/Source/core/html/forms/TextInputType.cpp
index a5e9db19398..b39a4ccbcd0 100644
--- a/chromium/third_party/WebKit/Source/core/html/forms/TextInputType.cpp
+++ b/chromium/third_party/WebKit/Source/core/html/forms/TextInputType.cpp
@@ -31,7 +31,7 @@
#include "config.h"
#include "core/html/forms/TextInputType.h"
-#include "InputTypeNames.h"
+#include "core/InputTypeNames.h"
#include "core/html/HTMLInputElement.h"
#include "wtf/PassOwnPtr.h"
@@ -39,9 +39,9 @@ namespace WebCore {
using namespace HTMLNames;
-PassRefPtr<InputType> TextInputType::create(HTMLInputElement& element)
+PassRefPtrWillBeRawPtr<InputType> TextInputType::create(HTMLInputElement& element)
{
- return adoptRef(new TextInputType(element));
+ return adoptRefWillBeNoop(new TextInputType(element));
}
void TextInputType::countUsage()