Index: Source/bindings/tests/results/V8TestEventTarget.cpp |
diff --git a/Source/bindings/tests/results/V8TestEventTarget.cpp b/Source/bindings/tests/results/V8TestEventTarget.cpp |
index 5d11d15dd0d97f6fc0f4591f6567b7caf1c2bc6a..53e93bdda342c472b20451eb171c170e85b64a94 100644 |
--- a/Source/bindings/tests/results/V8TestEventTarget.cpp |
+++ b/Source/bindings/tests/results/V8TestEventTarget.cpp |
@@ -169,7 +169,7 @@ static void namedPropertyGetter(v8::Local<v8::String> name, const v8::PropertyCa |
ASSERT(V8DOMWrapper::maybeDOMWrapper(info.Holder())); |
TestEventTarget* collection = V8TestEventTarget::toNative(info.Holder()); |
- AtomicString propertyName = toWebCoreAtomicString(name); |
+ AtomicString propertyName = toCoreAtomicString(name); |
RefPtr<Node> element = collection->namedItem(propertyName); |
if (!element) |
return; |
@@ -214,7 +214,7 @@ static void namedPropertySetterCallback(v8::Local<v8::String> name, v8::Local<v8 |
static void namedPropertyDeleter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Boolean>& info) |
{ |
TestEventTarget* collection = V8TestEventTarget::toNative(info.Holder()); |
- AtomicString propertyName = toWebCoreAtomicString(name); |
+ AtomicString propertyName = toCoreAtomicString(name); |
bool result = collection->anonymousNamedDeleter(propertyName); |
return v8SetReturnValueBool(info, result); |
} |
@@ -243,7 +243,7 @@ static void namedPropertyEnumerator(const v8::PropertyCallbackInfo<v8::Array>& i |
static void namedPropertyQuery(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Integer>& info) |
{ |
TestEventTarget* collection = V8TestEventTarget::toNative(info.Holder()); |
- AtomicString propertyName = toWebCoreAtomicString(name); |
+ AtomicString propertyName = toCoreAtomicString(name); |
ExceptionState exceptionState(info.Holder(), info.GetIsolate()); |
bool result = collection->namedPropertyQuery(propertyName, exceptionState); |
if (exceptionState.throwIfNeeded()) |