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

Side by Side Diff: plugins/org.chromium.sdk/src/org/chromium/sdk/internal/protocol/CommandResponseBody.java

Issue 3402011: Support 'break on exception' feature (Closed)
Patch Set: follow codereview Created 10 years, 3 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 unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698