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

Unified Diff: plugins/org.chromium.sdk/src-wip-generated/org/chromium/sdk/internal/wip/protocol/input/debugger/CallFrameValue.java

Issue 6881016: Add generated interfaces for WIP (Closed) Base URL: https://chromedevtools.googlecode.com/svn/trunk
Patch Set: Created 9 years, 8 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: plugins/org.chromium.sdk/src-wip-generated/org/chromium/sdk/internal/wip/protocol/input/debugger/CallFrameValue.java
diff --git a/plugins/org.chromium.sdk/src-wip-generated/org/chromium/sdk/internal/wip/protocol/input/debugger/CallFrameValue.java b/plugins/org.chromium.sdk/src-wip-generated/org/chromium/sdk/internal/wip/protocol/input/debugger/CallFrameValue.java
new file mode 100644
index 0000000000000000000000000000000000000000..6c7b7da4ae821d0e2a660c583a6ecf195fe2539a
--- /dev/null
+++ b/plugins/org.chromium.sdk/src-wip-generated/org/chromium/sdk/internal/wip/protocol/input/debugger/CallFrameValue.java
@@ -0,0 +1,32 @@
+// Generated source.
+// Generator: org.chromium.sdk.internal.wip.tools.protocolgenerator.Generator
+// Origin: http://svn.webkit.org/repository/webkit/trunk/Source/WebCore/inspector/Inspector.json@84080
+
+package org.chromium.sdk.internal.wip.protocol.input.debugger;
+
+/**
+ Debugger call frame. Array of call frames form call stack.
+ */
+@org.chromium.sdk.internal.protocolparser.JsonType
+public interface CallFrameValue {
+ /**
+ Call frame identifier.
+ */
+ String id();
+
+ /**
+ Name of the function called on this frame.
+ */
+ String functionName();
+
+ /**
+ Location in the source code.
+ */
+ org.chromium.sdk.internal.wip.protocol.input.debugger.LocationValue location();
+
+ /**
+ Scope chain for given call frame.
+ */
+ java.util.List<org.chromium.sdk.internal.wip.protocol.input.debugger.ScopeValue> scopeChain();
+
+}

Powered by Google App Engine
This is Rietveld 408576698