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

Unified Diff: Source/bindings/core/v8/inspector/V8JavaScriptCallFrame.h

Issue 1161323002: DevTools: implement JavaScriptCallFrame binding based on v8 API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Moved V8JavaScriptCallFrame to bindings/core/v8/inspector/ Created 5 years, 7 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
Index: Source/bindings/core/v8/inspector/V8JavaScriptCallFrame.h
diff --git a/Source/bindings/core/v8/inspector/V8JavaScriptCallFrame.h b/Source/bindings/core/v8/inspector/V8JavaScriptCallFrame.h
new file mode 100644
index 0000000000000000000000000000000000000000..a2aec1f00a7e423cb7591eeac8feaa9622bf8d44
--- /dev/null
+++ b/Source/bindings/core/v8/inspector/V8JavaScriptCallFrame.h
@@ -0,0 +1,24 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef V8JavaScriptCallFrame_h
+#define V8JavaScriptCallFrame_h
+
+#include "core/inspector/JavaScriptCallFrame.h"
+
+namespace blink {
+
+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>);
+
+private:
+ static v8::Local<v8::String> hiddenPropertyName(v8::Isolate*);
+};
+
+} // namespace blink
+
+#endif // V8JavaScriptCallFrame_h
« no previous file with comments | « Source/bindings/core/v8/custom/custom.gypi ('k') | Source/bindings/core/v8/inspector/V8JavaScriptCallFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698