org.chromium.sdk/src/org/chromium/sdk/internal/tools/v8/request/ListBreakpointsMessage.java
changeset 355 8726e95bcbba
equal deleted inserted replaced
354:0bceeb415e7f 355:8726e95bcbba
       
     1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
       
     2 // Use of this source code is governed by a BSD-style license that can be
       
     3 // found in the LICENSE file.
       
     4 
       
     5 package org.chromium.sdk.internal.tools.v8.request;
       
     6 
       
     7 import org.chromium.sdk.internal.tools.v8.DebuggerCommand;
       
     8 
       
     9 /**
       
    10  * Represents a "listbreakpoints" V8 request message.
       
    11  */
       
    12 public class ListBreakpointsMessage extends ContextlessDebuggerMessage {
       
    13 
       
    14   public ListBreakpointsMessage() {
       
    15     super(DebuggerCommand.LISTBREAKPOINTS.value);
       
    16   }
       
    17 }