Index: Source/bindings/core/v8/V8Initializer.cpp |
diff --git a/Source/bindings/core/v8/V8Initializer.cpp b/Source/bindings/core/v8/V8Initializer.cpp |
index c015f4369ba6bc07caa1c6e6c5cabf3bde7b8558..96fc84f78e27ef333fd7184ee854e6b00d349b4d 100644 |
--- a/Source/bindings/core/v8/V8Initializer.cpp |
+++ b/Source/bindings/core/v8/V8Initializer.cpp |
@@ -61,7 +61,7 @@ |
namespace blink { |
-static LocalFrame* findFrame(v8::Local<v8::Object> host, v8::Local<v8::Value> data, v8::Isolate* isolate) |
+static Frame* findFrame(v8::Local<v8::Object> host, v8::Local<v8::Value> data, v8::Isolate* isolate) |
{ |
const WrapperTypeInfo* type = WrapperTypeInfo::unwrap(data); |
@@ -298,10 +298,10 @@ static void promiseRejectHandlerInWorker(v8::PromiseRejectMessage message) |
static void failedAccessCheckCallbackInMainThread(v8::Local<v8::Object> host, v8::AccessType type, v8::Local<v8::Value> data) |
{ |
v8::Isolate* isolate = v8::Isolate::GetCurrent(); |
- LocalFrame* target = findFrame(host, data, isolate); |
+ Frame* target = findFrame(host, data, isolate); |
if (!target) |
return; |
- LocalDOMWindow* targetWindow = target->domWindow(); |
+ DOMWindow* targetWindow = target->domWindow(); |
// FIXME: We should modify V8 to pass in more contextual information (context, property, and object). |
ExceptionState exceptionState(ExceptionState::UnknownContext, 0, 0, isolate->GetCurrentContext()->Global(), isolate); |