| Index: Source/bindings/core/v8/V8GCController.cpp
|
| diff --git a/Source/bindings/core/v8/V8GCController.cpp b/Source/bindings/core/v8/V8GCController.cpp
|
| index 5cf31e5cf58e089c9a20da73512e08425bf6e037..1f36c13a60eef7608f5af53b820e9ce140b4da97 100644
|
| --- a/Source/bindings/core/v8/V8GCController.cpp
|
| +++ b/Source/bindings/core/v8/V8GCController.cpp
|
| @@ -73,7 +73,7 @@ static void addReferencesForNodeWithEventListeners(v8::Isolate* isolate, Node* n
|
| }
|
| }
|
|
|
| -Node* V8GCController::opaqueRootForGC(Node* node, v8::Isolate*)
|
| +Node* V8GCController::opaqueRootForGC(v8::Isolate*, Node* node)
|
| {
|
| ASSERT(node);
|
| // FIXME: Remove the special handling for image elements.
|
| @@ -277,7 +277,7 @@ public:
|
| Node* node = V8Node::toImpl(*wrapper);
|
| if (node->hasEventListeners())
|
| addReferencesForNodeWithEventListeners(m_isolate, node, v8::Persistent<v8::Object>::Cast(*value));
|
| - Node* root = V8GCController::opaqueRootForGC(node, m_isolate);
|
| + Node* root = V8GCController::opaqueRootForGC(m_isolate, node);
|
| m_isolate->SetObjectGroupId(*value, v8::UniqueId(reinterpret_cast<intptr_t>(root)));
|
| if (m_constructRetainedObjectInfos)
|
| m_groupsWhichNeedRetainerInfo.append(root);
|
|
|