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

Unified Diff: third_party/WebKit/Source/core/inspector/v8/V8JavaScriptCallFrame.h

Issue 1455583002: Pass current script context to InspectorWrapper::unwrap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updates Created 5 years, 1 month 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
Index: third_party/WebKit/Source/core/inspector/v8/V8JavaScriptCallFrame.h
diff --git a/third_party/WebKit/Source/core/inspector/v8/V8JavaScriptCallFrame.h b/third_party/WebKit/Source/core/inspector/v8/V8JavaScriptCallFrame.h
index 946440d2e466f90de26a5febec01120ca548ccc4..d7b4c2b0f018bcbfd046d55bcd5c984e7d91c4d2 100644
--- a/third_party/WebKit/Source/core/inspector/v8/V8JavaScriptCallFrame.h
+++ b/third_party/WebKit/Source/core/inspector/v8/V8JavaScriptCallFrame.h
@@ -18,7 +18,7 @@ class V8JavaScriptCallFrame {
public:
static v8::Local<v8::FunctionTemplate> createWrapperTemplate(v8::Isolate*);
static v8::Local<v8::Object> wrap(v8::Local<v8::FunctionTemplate> constructorTemplate, v8::Local<v8::Context>, PassRefPtr<JavaScriptCallFrame>);
- static JavaScriptCallFrame* unwrap(v8::Local<v8::Object>);
+ static JavaScriptCallFrame* unwrap(v8::Local<v8::Context>, v8::Local<v8::Object>);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698