Index: Source/bindings/v8/V8WindowShell.cpp |
diff --git a/Source/bindings/v8/V8WindowShell.cpp b/Source/bindings/v8/V8WindowShell.cpp |
index 6a5e895a26d09ce71e2816e081d97a361488444e..8d49b586f593091d17aa4c8360f17f7bd7fecc58 100644 |
--- a/Source/bindings/v8/V8WindowShell.cpp |
+++ b/Source/bindings/v8/V8WindowShell.cpp |
@@ -448,7 +448,7 @@ static v8::Handle<v8::Value> getNamedProperty(HTMLDocument* htmlDocument, const |
static void getter(v8::Local<v8::String> property, const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
// FIXME: Consider passing StringImpl directly. |
- AtomicString name = toWebCoreAtomicString(property); |
+ AtomicString name = toCoreAtomicString(property); |
HTMLDocument* htmlDocument = V8HTMLDocument::toNative(info.Holder()); |
ASSERT(htmlDocument); |
v8::Handle<v8::Value> result = getNamedProperty(htmlDocument, name, info.Holder(), info.GetIsolate()); |