org.chromium.sdk/src/org/chromium/sdk/internal/protocol/ChangeLiveBody.java
changeset 355 8726e95bcbba
equal deleted inserted replaced
354:0bceeb415e7f 355:8726e95bcbba
       
     1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
       
     2 // Use of this source code is governed by a BSD-style license that can be
       
     3 // found in the LICENSE file.
       
     4 
       
     5 package org.chromium.sdk.internal.protocol;
       
     6 
       
     7 import org.chromium.sdk.internal.protocolparser.JsonField;
       
     8 import org.chromium.sdk.internal.protocolparser.JsonSubtype;
       
     9 import org.chromium.sdk.internal.protocolparser.JsonType;
       
    10 
       
    11 @JsonType
       
    12 public interface ChangeLiveBody extends JsonSubtype<CommandResponseBody>  {
       
    13   @JsonField(jsonLiteralName="change_log")
       
    14   Object getChangeLog();
       
    15 }