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

Unified Diff: Source/bindings/core/v8/ModuleProxy.h

Issue 429453010: Drop V8RecursionScope dependency on ExecutionContext (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Reorder cleanup methods per haraken Created 6 years, 3 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 | « no previous file | Source/bindings/core/v8/ModuleProxy.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ModuleProxy.h
diff --git a/Source/bindings/core/v8/ModuleProxy.h b/Source/bindings/core/v8/ModuleProxy.h
index c3049292af620b758b95a478439cb250f021bb2b..840dfa7f3f770b09a8c230289eb634a2dfb467f3 100644
--- a/Source/bindings/core/v8/ModuleProxy.h
+++ b/Source/bindings/core/v8/ModuleProxy.h
@@ -5,6 +5,8 @@
#ifndef ModuleProxy_h
#define ModuleProxy_h
+#include <v8.h>
+
namespace blink {
class ExecutionContext;
@@ -15,13 +17,13 @@ class ModuleProxy {
public:
static ModuleProxy& moduleProxy();
- void didLeaveScriptContextForRecursionScope(ExecutionContext&);
- void registerDidLeaveScriptContextForRecursionScope(void (*didLeaveScriptContext)(ExecutionContext&));
+ void didLeaveScriptContextForRecursionScope(v8::Isolate*);
+ void registerDidLeaveScriptContextForRecursionScope(void (*didLeaveScriptContext)(v8::Isolate*));
private:
ModuleProxy() : m_didLeaveScriptContextForRecursionScope(0) { }
- void (*m_didLeaveScriptContextForRecursionScope)(ExecutionContext&);
+ void (*m_didLeaveScriptContextForRecursionScope)(v8::Isolate*);
};
} // namespace blink
« no previous file with comments | « no previous file | Source/bindings/core/v8/ModuleProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698