// Copyright (c) 2009 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.sdk.internal.v8native.protocol.output; import org.chromium.sdk.internal.v8native.DebuggerCommand; /** * Represents a "frame" V8 request message. */ public class FrameMessage extends DebuggerMessage { /** * @param frame number (top is 0) */ public FrameMessage(Integer frame) { super(DebuggerCommand.FRAME.value); putArgument("number", frame); } }