summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.h
diff options
context:
space:
mode:
authordgozman <dgozman@chromium.org>2016-03-16 15:30:50 -0700
committerCommit bot <commit-bot@chromium.org>2016-03-16 22:32:33 +0000
commit8ce1943be5284c67fb79cae9bf1576624fba97b6 (patch)
treece2eafcf6457a8f815dc7798404506d3b7a05161 /third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.h
parent4aedd4df4e2cbad0a315cf8bbb2bc5787a77ff02 (diff)
downloadchromium_src-8ce1943be5284c67fb79cae9bf1576624fba97b6.zip
chromium_src-8ce1943be5284c67fb79cae9bf1576624fba97b6.tar.gz
chromium_src-8ce1943be5284c67fb79cae9bf1576624fba97b6.tar.bz2
Remove V8RecrusionScope, cleanup call sites.
- blink-side usages migrated to v8::MicrotasksScope; - clients of WebScopedMicrotaskSuppression migrated to v8::MicrotasksScope; - moved Microtask.{h,cpp} to bindings/core/v8; - removed extra wrappers from V8DebuggerClient; - fixed a couple of inspector tests which relied on trace event not emitted from debugger anymore. Attempt #2. First one failed due to missing scopes in platform/v8_inspector. See issue 594974. BUG=585949 Review URL: https://codereview.chromium.org/1769273004 Cr-Commit-Position: refs/heads/master@{#381569}
Diffstat (limited to 'third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.h')
-rw-r--r--third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.h b/third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.h
index 83edad6..a4672b6 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.h
@@ -17,7 +17,7 @@ class V8DebuggerClient;
class V8JavaScriptCallFrame {
public:
static v8::Local<v8::FunctionTemplate> createWrapperTemplate(v8::Isolate*);
- static v8::Local<v8::Object> wrap(V8DebuggerClient*, v8::Local<v8::FunctionTemplate> constructorTemplate, v8::Local<v8::Context>, PassOwnPtr<JavaScriptCallFrame>);
+ static v8::Local<v8::Object> wrap(v8::Local<v8::FunctionTemplate> constructorTemplate, v8::Local<v8::Context>, PassOwnPtr<JavaScriptCallFrame>);
static JavaScriptCallFrame* unwrap(v8::Local<v8::Context>, v8::Local<v8::Object>);
};