summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/v8/WorldContextHandle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/bindings/v8/WorldContextHandle.cpp')
-rw-r--r--WebCore/bindings/v8/WorldContextHandle.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/bindings/v8/WorldContextHandle.cpp b/WebCore/bindings/v8/WorldContextHandle.cpp
index eb83586..7ba76d3 100644
--- a/WebCore/bindings/v8/WorldContextHandle.cpp
+++ b/WebCore/bindings/v8/WorldContextHandle.cpp
@@ -31,7 +31,7 @@
#include "config.h"
#include "WorldContextHandle.h"
-#include "V8IsolatedWorld.h"
+#include "V8IsolatedContext.h"
namespace WebCore {
@@ -41,8 +41,8 @@ WorldContextHandle::WorldContextHandle(WorldToUse worldToUse)
if (worldToUse == UseMainWorld)
return;
- if (V8IsolatedWorld* world = V8IsolatedWorld::getEntered())
- m_context = world->sharedContext();
+ if (V8IsolatedContext* context = V8IsolatedContext::getEntered())
+ m_context = context->sharedContext();
}
v8::Local<v8::Context> WorldContextHandle::adjustedContext(V8Proxy* proxy) const