Index: Source/modules/indexeddb/IDBTransactionTest.cpp |
diff --git a/Source/modules/indexeddb/IDBTransactionTest.cpp b/Source/modules/indexeddb/IDBTransactionTest.cpp |
index 005080baa3d49286efc84c94ed0339a614f43c69..ed13bd575b7fa0ae78156f20a6e28ef2a2a814f6 100644 |
--- a/Source/modules/indexeddb/IDBTransactionTest.cpp |
+++ b/Source/modules/indexeddb/IDBTransactionTest.cpp |
@@ -50,7 +50,8 @@ |
class IDBTransactionTest : public testing::Test { |
public: |
IDBTransactionTest() |
- : m_scope(V8BindingTestScope::create(v8::Isolate::GetCurrent())) |
+ : m_handleScope(v8::Isolate::GetCurrent()) |
+ , m_scope(v8::Context::New(v8::Isolate::GetCurrent())) |
, m_document(Document::create()) |
{ |
} |
@@ -61,7 +62,8 @@ |
} |
private: |
- OwnPtr<V8BindingTestScope> m_scope; |
+ v8::HandleScope m_handleScope; |
+ v8::Context::Scope m_scope; |
RefPtr<Document> m_document; |
}; |