Index: Source/bindings/tests/results/V8TestInterface.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterface.cpp b/Source/bindings/tests/results/V8TestInterface.cpp |
index ac9f4fe587facecd2c5ed0f513b23d2f63f7f0c5..01227ded2eface0dd4ba0ca60e05f53f34541dad 100644 |
--- a/Source/bindings/tests/results/V8TestInterface.cpp |
+++ b/Source/bindings/tests/results/V8TestInterface.cpp |
@@ -705,7 +705,7 @@ static void namedPropertyGetter(v8::Local<v8::String> name, const v8::PropertyCa |
ASSERT(V8DOMWrapper::maybeDOMWrapper(info.Holder())); |
TestInterface* collection = V8TestInterface::toNative(info.Holder()); |
- AtomicString propertyName = toWebCoreAtomicString(name); |
+ AtomicString propertyName = toCoreAtomicString(name); |
bool element0Enabled = false; |
RefPtr<Node> element0; |
bool element1Enabled = false; |
@@ -755,7 +755,7 @@ static void namedPropertyEnumerator(const v8::PropertyCallbackInfo<v8::Array>& i |
static void namedPropertyQuery(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Integer>& info) |
{ |
TestInterface* collection = V8TestInterface::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()) |