1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CC_TEST_FAKE_CONTENT_LAYER_CLIENT_H_
6 #define CC_TEST_FAKE_CONTENT_LAYER_CLIENT_H_
11 #include "base/compiler_specific.h"
12 #include "cc/layers/content_layer_client.h"
13 #include "third_party/skia/include/core/SkBitmap.h"
14 #include "third_party/skia/include/core/SkPaint.h"
15 #include "ui/gfx/geometry/rect.h"
19 class FakeContentLayerClient
: public ContentLayerClient
{
27 FakeContentLayerClient();
28 ~FakeContentLayerClient() override
;
32 const gfx::Rect
& rect
,
33 ContentLayerClient::GraphicsContextStatus gc_status
) override
;
34 scoped_refptr
<DisplayItemList
> PaintContentsToDisplayList(
35 const gfx::Rect
& clip
,
36 GraphicsContextStatus gc_status
) override
;
37 bool FillsBoundsCompletely() const override
;
39 void set_fill_with_nonsolid_color(bool nonsolid
) {
40 fill_with_nonsolid_color_
= nonsolid
;
43 void add_draw_rect(const gfx::RectF
& rect
, const SkPaint
& paint
) {
44 draw_rects_
.push_back(std::make_pair(rect
, paint
));
47 void add_draw_bitmap(const SkBitmap
& bitmap
,
48 const gfx::Point
& point
,
49 const SkPaint
& paint
) {
54 draw_bitmaps_
.push_back(data
);
57 SkCanvas
* last_canvas() const { return last_canvas_
; }
59 ContentLayerClient::GraphicsContextStatus
last_context_status() const {
60 return last_context_status_
;
64 typedef std::vector
<std::pair
<gfx::RectF
, SkPaint
>> RectPaintVector
;
65 typedef std::vector
<BitmapData
> BitmapVector
;
67 bool fill_with_nonsolid_color_
;
68 RectPaintVector draw_rects_
;
69 BitmapVector draw_bitmaps_
;
70 SkCanvas
* last_canvas_
;
71 ContentLayerClient::GraphicsContextStatus last_context_status_
;
76 #endif // CC_TEST_FAKE_CONTENT_LAYER_CLIENT_H_