// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SERVICES_PAINT_PREVIEW_COMPOSITOR_PAINT_PREVIEW_FRAME_H_ #define COMPONENTS_SERVICES_PAINT_PREVIEW_COMPOSITOR_PAINT_PREVIEW_FRAME_H_ #include <vector> #include "components/services/paint_preview_compositor/public/mojom/paint_preview_compositor.mojom.h" #include "third_party/skia/include/core/SkPicture.h" #include "third_party/skia/include/core/SkRefCnt.h" namespace paint_preview { // A deserialized in-memory representation of a PaintPreviewFrame and its // associated subframe clip rects. struct PaintPreviewFrame { … }; } // namespace paint_preview #endif // COMPONENTS_SERVICES_PAINT_PREVIEW_COMPOSITOR_PAINT_PREVIEW_FRAME_H_