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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js

Issue 1826623002: [DevTools] Move wrapCallFrames from InjectedScriptSource.js to native (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-no-scopes
Patch Set: Created 4 years, 9 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 | « third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js
diff --git a/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js b/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js
index feca194cb9b8a37fc512ed4a3f852dd4a53379d1..ee4921b4afb3e217840df67fd487f9d7a8529fce 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js
+++ b/third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js
@@ -117,61 +117,6 @@ InjectedScriptHostClass.prototype.bind = function(value, groupName) {}
/** @type {!InjectedScriptHostClass} */
var InjectedScriptHost;
-
-/** @interface */
-function JavaScriptCallFrame()
-{
- /** @type {!JavaScriptCallFrame} */
- this.caller;
- /** @type {number} */
- this.sourceID;
- /** @type {number} */
- this.line;
- /** @type {number} */
- this.column;
- /** @type {!Array.<!Object>} */
- this.scopeChain;
- /** @type {!Object} */
- this.thisObject;
- /** @type {string} */
- this.stepInPositions;
- /** @type {string} */
- this.functionName;
- /** @type {number} */
- this.functionLine;
- /** @type {number} */
- this.functionColumn;
- /** @type {boolean} */
- this.isAtReturn;
- /** @type {*} */
- this.returnValue;
-}
-
-/**
- * @param {number} scopeIndex
- * @return {!DebuggerAgent.ScopeType<string>}
- */
-JavaScriptCallFrame.prototype.scopeType = function(scopeIndex) {}
-
-/**
- * @param {number} scopeIndex
- * @return {string}
- */
-JavaScriptCallFrame.prototype.scopeName = function(scopeIndex) {}
-
-/**
- * @param {number} scopeIndex
- * @return {?DebuggerAgent.Location}
- */
-JavaScriptCallFrame.prototype.scopeStartLocation = function(scopeIndex) {}
-
-/**
- * @param {number} scopeIndex
- * @return {?DebuggerAgent.Location}
- */
-JavaScriptCallFrame.prototype.scopeEndLocation = function(scopeIndex) {}
-
-
/** @type {!Window} */
var inspectedGlobalObject;
/** @type {number} */
« no previous file with comments | « third_party/WebKit/Source/platform/v8_inspector/V8JavaScriptCallFrame.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698