org.chromium.sdk/src/org/chromium/sdk/internal/tools/v8/request/SetBreakpointMessage.java
changeset 355 8726e95bcbba
parent 2 e4420d2515f1
equal deleted inserted replaced
354:0bceeb415e7f 355:8726e95bcbba
    32    * @param enabled whether the breakpoint is enabled initially. Nullable, default is true
    32    * @param enabled whether the breakpoint is enabled initially. Nullable, default is true
    33    * @param condition nullable string with breakpoint condition
    33    * @param condition nullable string with breakpoint condition
    34    * @param ignoreCount nullable number specifying the amount of break point hits to ignore.
    34    * @param ignoreCount nullable number specifying the amount of break point hits to ignore.
    35    *        Default is 0
    35    *        Default is 0
    36    */
    36    */
    37   public SetBreakpointMessage(Breakpoint.Type type, String target,
    37   public SetBreakpointMessage(Breakpoint.Type type, Object target,
    38       Integer line, Integer position, Boolean enabled, String condition,
    38       Integer line, Integer position, Boolean enabled, String condition,
    39       Integer ignoreCount) {
    39       Integer ignoreCount) {
    40     super(DebuggerCommand.SETBREAKPOINT.value);
    40     super(DebuggerCommand.SETBREAKPOINT.value);
    41     putArgument("type", typeToV8Type.get(type));
    41     putArgument("type", typeToV8Type.get(type));
    42     putArgument("target", target);
    42     putArgument("target", target);