Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(375)

Unified Diff: Source/bindings/v8/V8Binding.cpp

Issue 180743013: Ensure DOMWrapperWorld always exists in all webkit_unit_tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/v8/V8Binding.h ('k') | Source/bindings/v8/WorkerScriptController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/V8Binding.cpp
diff --git a/Source/bindings/v8/V8Binding.cpp b/Source/bindings/v8/V8Binding.cpp
index 33727d87e9d721e6535f7b15daf130df6bcb9828..6e04b2f7ac7d6456b641e140e2e5a9c624374719 100644
--- a/Source/bindings/v8/V8Binding.cpp
+++ b/Source/bindings/v8/V8Binding.cpp
@@ -734,4 +734,18 @@ v8::Isolate* toIsolate(LocalFrame* frame)
return frame->script().isolate();
}
+PassOwnPtr<V8BindingTestScope> V8BindingTestScope::create(v8::Isolate* isolate)
+{
+ return adoptPtr(new V8BindingTestScope(isolate));
+}
+
+V8BindingTestScope::V8BindingTestScope(v8::Isolate* isolate)
+ : m_handleScope(isolate)
+ , m_context(v8::Context::New(isolate))
+ , m_contextScope(m_context)
+ , m_world(DOMWrapperWorld::create())
+ , m_perContextData(V8PerContextData::create(m_context, m_world.get()))
+{
+}
+
} // namespace WebCore
« no previous file with comments | « Source/bindings/v8/V8Binding.h ('k') | Source/bindings/v8/WorkerScriptController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698