OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 package org.chromium.sdk.internal.protocol; | 5 package org.chromium.sdk.internal.protocol; |
6 | 6 |
7 import java.util.List; | 7 import java.util.List; |
8 | 8 |
9 import org.chromium.sdk.internal.protocol.data.ScriptHandle; | 9 import org.chromium.sdk.internal.protocol.data.ScriptHandle; |
10 import org.chromium.sdk.internal.protocol.data.ValueHandle; | 10 import org.chromium.sdk.internal.protocol.data.ValueHandle; |
(...skipping 29 matching lines...) Expand all Loading... |
40 ScopeBody asScopeBody() throws JsonProtocolParseException; | 40 ScopeBody asScopeBody() throws JsonProtocolParseException; |
41 | 41 |
42 @JsonSubtypeCasting | 42 @JsonSubtypeCasting |
43 VersionBody asVersionBody() throws JsonProtocolParseException; | 43 VersionBody asVersionBody() throws JsonProtocolParseException; |
44 | 44 |
45 @JsonSubtypeCasting | 45 @JsonSubtypeCasting |
46 ChangeLiveBody asChangeLiveBody() throws JsonProtocolParseException; | 46 ChangeLiveBody asChangeLiveBody() throws JsonProtocolParseException; |
47 | 47 |
48 @JsonSubtypeCasting | 48 @JsonSubtypeCasting |
49 ListBreakpointsBody asListBreakpointsBody() throws JsonProtocolParseException; | 49 ListBreakpointsBody asListBreakpointsBody() throws JsonProtocolParseException; |
| 50 |
| 51 @JsonSubtypeCasting |
| 52 FlagsBody asFlagsBody() throws JsonProtocolParseException; |
50 } | 53 } |
OLD | NEW |