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

Unified Diff: plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/WorkspaceBridge.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 side-by-side diff with in-line comments
Download patch
Index: plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/WorkspaceBridge.java
diff --git a/plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/WorkspaceBridge.java b/plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/WorkspaceBridge.java
index a3e40340800d15fd9172cb23e5c924192f819140..5170f6afe1ce7fee64a30ca77dd8d9cdaf78e862 100644
--- a/plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/WorkspaceBridge.java
+++ b/plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/WorkspaceBridge.java
@@ -104,6 +104,9 @@ public interface WorkspaceBridge {
boolean supportsBreakpoint(IBreakpoint breakpoint);
void breakpointsHit(Collection<? extends Breakpoint> breakpointsHit);
void initBreakpointManagerListenerState(IBreakpointManager breakpointManager);
+
+ Boolean getBreakExceptionState(JavascriptVm.ExceptionCatchType catchType);
+ void setBreakExceptionState(JavascriptVm.ExceptionCatchType catchType, boolean value);
}
/**

Powered by Google App Engine
This is Rietveld 408576698