| Index: Source/bindings/core/v8/DOMWrapperWorld.h
|
| diff --git a/Source/bindings/core/v8/DOMWrapperWorld.h b/Source/bindings/core/v8/DOMWrapperWorld.h
|
| index f5785a3807998060d98f629e5fb19465a704ac95..7f1f8a6e1bff3fc7f7e120a2f7106e18f389bd77 100644
|
| --- a/Source/bindings/core/v8/DOMWrapperWorld.h
|
| +++ b/Source/bindings/core/v8/DOMWrapperWorld.h
|
| @@ -57,11 +57,11 @@ enum WorldIdConstants {
|
| // This class represent a collection of DOM wrappers for a specific world.
|
| class DOMWrapperWorld : public RefCounted<DOMWrapperWorld> {
|
| public:
|
| - static PassRefPtr<DOMWrapperWorld> create(int worldId = -1, int extensionGroup = -1);
|
| + static PassRefPtr<DOMWrapperWorld> create(v8::Isolate*, int worldId = -1, int extensionGroup = -1);
|
|
|
| static const int mainWorldExtensionGroup = 0;
|
| static const int privateScriptIsolatedWorldExtensionGroup = 1;
|
| - static PassRefPtr<DOMWrapperWorld> ensureIsolatedWorld(int worldId, int extensionGroup);
|
| + static PassRefPtr<DOMWrapperWorld> ensureIsolatedWorld(v8::Isolate*, int worldId, int extensionGroup);
|
| ~DOMWrapperWorld();
|
| void dispose();
|
|
|
| @@ -173,7 +173,7 @@ public:
|
| }
|
|
|
| private:
|
| - DOMWrapperWorld(int worldId, int extensionGroup);
|
| + DOMWrapperWorld(v8::Isolate*, int worldId, int extensionGroup);
|
|
|
| static void weakCallbackForDOMObjectHolder(const v8::WeakCallbackData<v8::Value, DOMObjectHolderBase>&);
|
| void registerDOMObjectHolderInternal(PassOwnPtr<DOMObjectHolderBase>);
|
|
|