OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "build/build_config.h" | 5 #include "build/build_config.h" |
6 #include "cc/layers/content_layer.h" | 6 #include "cc/layers/content_layer.h" |
7 #include "cc/layers/content_layer_client.h" | 7 #include "cc/layers/content_layer_client.h" |
8 #include "cc/layers/image_layer.h" | 8 #include "cc/layers/image_layer.h" |
9 #include "cc/layers/solid_color_layer.h" | 9 #include "cc/layers/solid_color_layer.h" |
10 #include "cc/test/layer_tree_pixel_test.h" | 10 #include "cc/test/layer_tree_pixel_test.h" |
11 #include "cc/test/pixel_comparator.h" | 11 #include "cc/test/pixel_comparator.h" |
12 | 12 |
13 #if !defined(OS_ANDROID) | 13 #if !defined(OS_ANDROID) |
14 | 14 |
15 namespace cc { | 15 namespace cc { |
16 namespace { | 16 namespace { |
17 | 17 |
18 class LayerTreeHostMasksPixelTest : public LayerTreePixelTest {}; | 18 class LayerTreeHostMasksPixelTest : public LayerTreePixelTest {}; |
19 | 19 |
20 class MaskContentLayerClient : public ContentLayerClient { | 20 class MaskContentLayerClient : public ContentLayerClient { |
21 public: | 21 public: |
22 MaskContentLayerClient() {} | 22 MaskContentLayerClient() {} |
23 virtual ~MaskContentLayerClient() {} | 23 virtual ~MaskContentLayerClient() {} |
24 | 24 |
25 virtual void DidChangeLayerCanUseLCDText() OVERRIDE {} | 25 virtual void DidChangeLayerCanUseLCDText() OVERRIDE {} |
26 | 26 |
27 virtual bool FillsBoundsCompletely() const OVERRIDE { return false; } | 27 virtual bool FillsBoundsCompletely() const OVERRIDE { return false; } |
28 | 28 |
29 virtual void PaintContents(SkCanvas* canvas, | 29 virtual void PaintContents( |
30 const gfx::Rect& rect, | 30 SkCanvas* canvas, |
31 gfx::RectF* opaque_rect) OVERRIDE { | 31 const gfx::Rect& rect, |
32 gfx::RectF* opaque_rect, | |
33 ContentLayerClient::GraphicsContextStatus | |
34 graphics_context_status = ContentLayerClient::GraphicsContextEnabled) | |
Sami
2014/05/01 16:32:53
Ditto about default parameters.
Stephen Chennney
2014/05/01 19:12:26
Done.
| |
35 OVERRIDE { | |
32 SkPaint paint; | 36 SkPaint paint; |
33 paint.setStyle(SkPaint::kStroke_Style); | 37 paint.setStyle(SkPaint::kStroke_Style); |
34 paint.setStrokeWidth(SkIntToScalar(2)); | 38 paint.setStrokeWidth(SkIntToScalar(2)); |
35 paint.setColor(SK_ColorWHITE); | 39 paint.setColor(SK_ColorWHITE); |
36 | 40 |
37 canvas->clear(SK_ColorTRANSPARENT); | 41 canvas->clear(SK_ColorTRANSPARENT); |
38 gfx::Rect inset_rect(rect); | 42 gfx::Rect inset_rect(rect); |
39 while (!inset_rect.IsEmpty()) { | 43 while (!inset_rect.IsEmpty()) { |
40 inset_rect.Inset(3, 3, 2, 2); | 44 inset_rect.Inset(3, 3, 2, 2); |
41 canvas->drawRect( | 45 canvas->drawRect( |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
273 RunPixelTest(GL_WITH_BITMAP, | 277 RunPixelTest(GL_WITH_BITMAP, |
274 background, | 278 background, |
275 base::FilePath(FILE_PATH_LITERAL( | 279 base::FilePath(FILE_PATH_LITERAL( |
276 "mask_of_replica_of_clipped_layer.png"))); | 280 "mask_of_replica_of_clipped_layer.png"))); |
277 } | 281 } |
278 | 282 |
279 } // namespace | 283 } // namespace |
280 } // namespace cc | 284 } // namespace cc |
281 | 285 |
282 #endif // OS_ANDROID | 286 #endif // OS_ANDROID |
OLD | NEW |