blob: 30f52772483e1376be01cf240235eeafbff95525 [file] [log] [blame]
// Copyright 2025 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/region_data.h"
namespace chrome_pdf {
RegionData::RegionData(base::span<uint8_t> buffer, size_t stride)
: buffer(buffer), stride(stride) {}
RegionData::RegionData(RegionData&&) noexcept = default;
RegionData& RegionData::operator=(RegionData&&) noexcept = default;
RegionData::~RegionData() = default;
} // namespace chrome_pdf