chromium/printing/image.h

// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#ifndef PRINTING_IMAGE_H_
#define PRINTING_IMAGE_H_

#include <stddef.h>
#include <stdint.h>

#include <vector>

#include "base/check.h"
#include "ui/gfx/geometry/size.h"

namespace printing {

// Lightweight raw-bitmap management. The image, once initialized, is immutable.
// The only purpose is testing image contents.
class Image {};

}  // namespace printing

#endif  // PRINTING_IMAGE_H_