blob: b7597cdc0c523ec37f2f15efe148125f7fc69d2e [file] [log] [blame]
// Copyright 2019 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.components.content_capture;
import java.util.ArrayList;
/**
* This class is used to specify the frame's session by a list of Frame ContentCaptureData from the
* interested frame to root.
*/
public class FrameSession extends ArrayList<ContentCaptureData> {
/**
* @param length is reserved frame list length.
*/
public FrameSession(int length) {
super(length);
}
}