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

Unified Diff: Source/core/inspector/injected_script_externs.js

Issue 1156823005: DevTools: delete JavaScriptCallFrame.idl (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | « Source/core/inspector/JavaScriptCallFrame.idl ('k') | Source/devtools/scripts/compile_frontend.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/injected_script_externs.js
diff --git a/Source/core/inspector/injected_script_externs.js b/Source/core/inspector/injected_script_externs.js
new file mode 100644
index 0000000000000000000000000000000000000000..9fca1a00c7efaf825ad7624c237eb22912db663e
--- /dev/null
+++ b/Source/core/inspector/injected_script_externs.js
@@ -0,0 +1,59 @@
+// 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.
+
+/** @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 {string} script
+ * @param {!Object=} scopeExtension
+ * @return {*}
+ */
+JavaScriptCallFrame.prototype.evaluateWithExceptionDetails = function(script, scopeExtension) {}
+
+/**
+ * @return {*}
+ */
+JavaScriptCallFrame.prototype.restart = function() {}
+
+/**
+ * @param {number=} scopeIndex
+ * @param {?string=} variableName
+ * @param {*=} newValue
+ * @return {*}
+ */
+JavaScriptCallFrame.prototype.setVariableValue = function(scopeIndex, variableName, newValue) {}
+
+/**
+ * @param {number} scopeIndex
+ * @return {number}
+ */
+JavaScriptCallFrame.prototype.scopeType = function(scopeIndex) {}
+
« no previous file with comments | « Source/core/inspector/JavaScriptCallFrame.idl ('k') | Source/devtools/scripts/compile_frontend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698