org.chromium.sdk/src/org/chromium/sdk/internal/tools/v8/request/DebuggerMessageFactory.java
changeset 355 8726e95bcbba
parent 2 e4420d2515f1
equal deleted inserted replaced
354:0bceeb415e7f 355:8726e95bcbba
    43 
    43 
    44   public static ContextlessDebuggerMessage source(Integer frame, Integer fromLine, Integer toLine) {
    44   public static ContextlessDebuggerMessage source(Integer frame, Integer fromLine, Integer toLine) {
    45     return new SourceMessage(frame, fromLine, toLine);
    45     return new SourceMessage(frame, fromLine, toLine);
    46   }
    46   }
    47 
    47 
    48   public static ContextlessDebuggerMessage setBreakpoint(Breakpoint.Type type, String target,
    48   public static ContextlessDebuggerMessage setBreakpoint(Breakpoint.Type type, Object target,
    49       Integer line, Integer position, Boolean enabled, String condition, Integer ignoreCount) {
    49       Integer line, Integer position, Boolean enabled, String condition, Integer ignoreCount) {
    50     return new SetBreakpointMessage(type, target, line, position, enabled, condition, ignoreCount);
    50     return new SetBreakpointMessage(type, target, line, position, enabled, condition, ignoreCount);
    51   }
    51   }
    52 
    52 
    53   public static ContextlessDebuggerMessage changeBreakpoint(Breakpoint breakpoint) {
    53   public static ContextlessDebuggerMessage changeBreakpoint(Breakpoint breakpoint) {