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