| Index: plugins/org.chromium.sdk.wipbackend.wk120709/src-wip-generated/org/chromium/sdk/internal/wip/protocol/output/debugger/SetPauseOnExceptionsParams.java
|
| diff --git a/plugins/org.chromium.sdk.wipbackend.wk120709/src-wip-generated/org/chromium/sdk/internal/wip/protocol/output/debugger/SetPauseOnExceptionsParams.java b/plugins/org.chromium.sdk.wipbackend.wk120709/src-wip-generated/org/chromium/sdk/internal/wip/protocol/output/debugger/SetPauseOnExceptionsParams.java
|
| deleted file mode 100644
|
| index d2f644231460af218ab631d38fc46100d66a5fda..0000000000000000000000000000000000000000
|
| --- a/plugins/org.chromium.sdk.wipbackend.wk120709/src-wip-generated/org/chromium/sdk/internal/wip/protocol/output/debugger/SetPauseOnExceptionsParams.java
|
| +++ /dev/null
|
| @@ -1,42 +0,0 @@
|
| -// Generated source.
|
| -// Generator: org.chromium.sdk.internal.wip.tools.protocolgenerator.Generator
|
| -// Origin: http://svn.webkit.org/repository/webkit/trunk/Source/WebCore/inspector/Inspector.json@96703
|
| -
|
| -package org.chromium.sdk.internal.wip.protocol.output.debugger;
|
| -
|
| -/**
|
| -Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or no exceptions. Initial pause on exceptions state is <code>none</code>.
|
| - */
|
| -public class SetPauseOnExceptionsParams extends org.chromium.sdk.internal.wip.protocol.output.WipParams {
|
| - /**
|
| - @param state Pause on exceptions mode.
|
| - */
|
| - public SetPauseOnExceptionsParams(State state) {
|
| - this.put("state", state);
|
| - }
|
| -
|
| - public static final String METHOD_NAME = org.chromium.sdk.internal.wip.protocol.BasicConstants.Domain.DEBUGGER + ".setPauseOnExceptions";
|
| -
|
| - @Override protected String getRequestName() {
|
| - return METHOD_NAME;
|
| - }
|
| -
|
| - /**
|
| - Pause on exceptions mode.
|
| - */
|
| - public enum State implements org.json.simple.JSONAware{
|
| - NONE("none"),
|
| - UNCAUGHT("uncaught"),
|
| - ALL("all"),
|
| - ;
|
| - private final String protocolValue;
|
| -
|
| - State(String protocolValue) {
|
| - this.protocolValue = protocolValue;
|
| - }
|
| -
|
| - @Override public String toJSONString() {
|
| - return '"' + protocolValue + '"';
|
| - }
|
| - }
|
| -}
|
|
|