chromium/ui/compositor/canvas_painter_unittest.cc

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

#include "ui/compositor/canvas_painter.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "ui/compositor/paint_recorder.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/size.h"

namespace ui {
namespace {
void CheckPaintedShape(const SkBitmap& bitmap,
                       const gfx::Rect& shape_bounds,
                       const SkColor shape_color,
                       float device_scale_factor) {}
}  // namespace

class CanvasPainterTest : public ::testing::TestWithParam<float> {};

TEST_P(CanvasPainterTest, Initialization) {}

TEST_P(CanvasPainterTest, InitializationPixelCanvasEnabled) {}

TEST_P(CanvasPainterTest, Paint) {}

TEST_P(CanvasPainterTest, PaintPixelCanvasEnabled) {}

INSTANTIATE_TEST_SUITE_P();
}  // namespace ui