| Index: Source/core/scripts/make_names.pl
|
| diff --git a/Source/core/scripts/make_names.pl b/Source/core/scripts/make_names.pl
|
| index bceb39166ab39b68cafa3bfd66152c7044b25426..1682a33868d4a93625d05006c40487a42cbfc193 100755
|
| --- a/Source/core/scripts/make_names.pl
|
| +++ b/Source/core/scripts/make_names.pl
|
| @@ -819,7 +819,7 @@ print F "typedef PassRefPtr<$parameters{namespace}Element> (*ConstructorFunction
|
| print F ", HTMLFormElement*" if $parameters{namespace} eq "HTML";
|
| print F ", bool createdByParser);\n";
|
| print F <<END
|
| -typedef HashMap<AtomicStringImpl*, ConstructorFunction> FunctionMap;
|
| +typedef HashMap<StringImpl*, ConstructorFunction> FunctionMap;
|
|
|
| static FunctionMap* gFunctionMap = 0;
|
|
|
| @@ -1088,7 +1088,7 @@ END
|
| print F <<END
|
| v8::Handle<v8::Object> createV8$parameters{namespace}Wrapper($parameters{namespace}Element* element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
|
| {
|
| - typedef HashMap<WTF::AtomicStringImpl*, Create$parameters{namespace}ElementWrapperFunction> FunctionMap;
|
| + typedef HashMap<WTF::StringImpl*, Create$parameters{namespace}ElementWrapperFunction> FunctionMap;
|
| DEFINE_STATIC_LOCAL(FunctionMap, map, ());
|
| if (map.isEmpty()) {
|
| END
|
|
|