Index: Source/core/html/forms/InputType.cpp |
diff --git a/Source/core/html/forms/InputType.cpp b/Source/core/html/forms/InputType.cpp |
index 94209d5a4d3f86afd7a5ab0769d57a9c47833424..6d47b1ff1731cd47d4e911966b70dcb0456dc2c9 100644 |
--- a/Source/core/html/forms/InputType.cpp |
+++ b/Source/core/html/forms/InputType.cpp |
@@ -75,8 +75,8 @@ namespace blink { |
using blink::WebLocalizedString; |
using namespace HTMLNames; |
-typedef PassRefPtrWillBeRawPtr<InputType> (*InputTypeFactoryFunction)(HTMLInputElement&); |
-typedef HashMap<AtomicString, InputTypeFactoryFunction, CaseFoldingHash> InputTypeFactoryMap; |
+using InputTypeFactoryFunction = PassRefPtrWillBeRawPtr<InputType> (*)(HTMLInputElement&); |
+using InputTypeFactoryMap = HashMap<AtomicString, InputTypeFactoryFunction, CaseFoldingHash>; |
static PassOwnPtr<InputTypeFactoryMap> createInputTypeFactoryMap() |
{ |