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

Unified Diff: plugins/org.chromium.sdk/src/org/chromium/sdk/internal/v8native/protocol/input/SetVariableValueBody.java

Issue 11662019: Support variable changing in SDK interface and v8 native (Closed) Base URL: https://chromedevtools.googlecode.com/svn/trunk
Patch Set: merge Created 7 years, 11 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/org/chromium/sdk/internal/v8native/protocol/input/SetVariableValueBody.java
diff --git a/plugins/org.chromium.sdk/src/org/chromium/sdk/internal/v8native/protocol/input/AfterCompileBody.java b/plugins/org.chromium.sdk/src/org/chromium/sdk/internal/v8native/protocol/input/SetVariableValueBody.java
similarity index 54%
copy from plugins/org.chromium.sdk/src/org/chromium/sdk/internal/v8native/protocol/input/AfterCompileBody.java
copy to plugins/org.chromium.sdk/src/org/chromium/sdk/internal/v8native/protocol/input/SetVariableValueBody.java
index a515f2bf35e8778eff55ae63959fc995943870d8..66d62b7221a22d637864ea984948ef5bd51e9bd1 100644
--- a/plugins/org.chromium.sdk/src/org/chromium/sdk/internal/v8native/protocol/input/AfterCompileBody.java
+++ b/plugins/org.chromium.sdk/src/org/chromium/sdk/internal/v8native/protocol/input/SetVariableValueBody.java
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 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.
@@ -6,9 +6,9 @@ package org.chromium.sdk.internal.v8native.protocol.input;
import org.chromium.sdk.internal.protocolparser.JsonSubtype;
import org.chromium.sdk.internal.protocolparser.JsonType;
-import org.chromium.sdk.internal.v8native.protocol.input.data.ScriptHandle;
+import org.chromium.sdk.internal.v8native.protocol.input.data.ValueHandle;
@JsonType
-public interface AfterCompileBody extends JsonSubtype<EventNotificationBody> {
- ScriptHandle script();
+public interface SetVariableValueBody extends JsonSubtype<CommandResponseBody> {
+ ValueHandle newValue();
}

Powered by Google App Engine
This is Rietveld 408576698