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

Unified Diff: plugins/org.chromium.sdk.wipbackend.dev/src-wip-generated/org/chromium/sdk/internal/wip/protocol/output/debugger/SetVariableValueParams.java

Issue 12261048: Catch up with WIP (Closed) Base URL: https://chromedevtools.googlecode.com/svn/trunk
Patch Set: Created 7 years, 10 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.wipbackend.dev/src-wip-generated/org/chromium/sdk/internal/wip/protocol/output/debugger/SetVariableValueParams.java
diff --git a/plugins/org.chromium.sdk.wipbackend.dev/src-wip-generated/org/chromium/sdk/internal/wip/protocol/output/debugger/SetVariableValueParams.java b/plugins/org.chromium.sdk.wipbackend.dev/src-wip-generated/org/chromium/sdk/internal/wip/protocol/output/debugger/SetVariableValueParams.java
new file mode 100644
index 0000000000000000000000000000000000000000..3bc3943d245d1e03e4b86ed7f144710bf36adfb5
--- /dev/null
+++ b/plugins/org.chromium.sdk.wipbackend.dev/src-wip-generated/org/chromium/sdk/internal/wip/protocol/output/debugger/SetVariableValueParams.java
@@ -0,0 +1,36 @@
+// Generated source.
+// Generator: org.chromium.sdk.internal.wip.tools.protocolgenerator.Generator
+// Origin: http://svn.webkit.org/repository/webkit/trunk/Source/WebCore/inspector/Inspector.json@142888
+
+package org.chromium.sdk.internal.wip.protocol.output.debugger;
+
+/**
+Changes value of variable in a callframe or a closure. Either callframe or function must be specified. Object-based scopes are not supported and must be mutated manually.
+ */
+public class SetVariableValueParams extends org.chromium.sdk.internal.wip.protocol.output.WipParams {
+ /**
+ @param scopeNumber 0-based number of scope as was listed in scope chain. Only 'local', 'closure' and 'catch' scope types are allowed. Other scopes could be manipulated manually.
+ @param variableName Variable name.
+ @param newValue New variable value.
+ @param callFrameIdOpt Id of callframe that holds variable.
+ @param functionObjectIdOpt Object id of closure (function) that holds variable.
+ */
+ public SetVariableValueParams(long scopeNumber, String variableName, org.chromium.sdk.internal.wip.protocol.output.runtime.CallArgumentParam newValue, String/*See org.chromium.sdk.internal.wip.protocol.common.debugger.CallFrameIdTypedef*/ callFrameIdOpt, String/*See org.chromium.sdk.internal.wip.protocol.common.runtime.RemoteObjectIdTypedef*/ functionObjectIdOpt) {
+ this.put("scopeNumber", scopeNumber);
+ this.put("variableName", variableName);
+ this.put("newValue", newValue);
+ if (callFrameIdOpt != null) {
+ this.put("callFrameId", callFrameIdOpt);
+ }
+ if (functionObjectIdOpt != null) {
+ this.put("functionObjectId", functionObjectIdOpt);
+ }
+ }
+
+ public static final String METHOD_NAME = org.chromium.sdk.internal.wip.protocol.BasicConstants.Domain.DEBUGGER + ".setVariableValue";
+
+ @Override protected String getRequestName() {
+ return METHOD_NAME;
+ }
+
+}

Powered by Google App Engine
This is Rietveld 408576698