| 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();
|
| }
|
|
|