1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
pdf / paint_ready_rect.cc [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "pdf/paint_ready_rect.h"
#include <utility>
#include "base/check.h"
#include "third_party/skia/include/core/SkImage.h"
#include "third_party/skia/include/core/SkRefCnt.h"
#include "ui/gfx/geometry/rect.h"
namespace chrome_pdf {
PaintReadyRect::PaintReadyRect(const gfx::Rect& rect, sk_sp<SkImage> image)
: PaintReadyRect(rect, std::move(image), /*flush_now=*/false) {}
PaintReadyRect::PaintReadyRect(const gfx::Rect& rect,
sk_sp<SkImage> image,
bool flush_now)
: rect_(rect), image_(std::move(image)), flush_now_(flush_now) {
CHECK(image_);
}
PaintReadyRect::PaintReadyRect(PaintReadyRect&&) noexcept = default;
PaintReadyRect& PaintReadyRect::operator=(PaintReadyRect&&) noexcept = default;
PaintReadyRect::PaintReadyRect(const PaintReadyRect& other) = default;
PaintReadyRect& PaintReadyRect::operator=(const PaintReadyRect& other) =
default;
PaintReadyRect::~PaintReadyRect() = default;
} // namespace chrome_pdf