OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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 "cc/tiled_layer.h" | 5 #include "cc/tiled_layer.h" |
6 | 6 |
7 #include "cc/bitmap_content_layer_updater.h" | 7 #include "cc/bitmap_content_layer_updater.h" |
8 #include "cc/layer_painter.h" | 8 #include "cc/layer_painter.h" |
9 #include "cc/overdraw_metrics.h" | 9 #include "cc/overdraw_metrics.h" |
10 #include "cc/rendering_stats.h" | 10 #include "cc/rendering_stats.h" |
11 #include "cc/resource_update_controller.h" | 11 #include "cc/resource_update_controller.h" |
12 #include "cc/single_thread_proxy.h" // For DebugScopedSetImplThread | 12 #include "cc/single_thread_proxy.h" // For DebugScopedSetImplThread |
13 #include "cc/test/animation_test_common.h" | 13 #include "cc/test/animation_test_common.h" |
14 #include "cc/test/fake_layer_tree_host_client.h" | 14 #include "cc/test/fake_layer_tree_host_client.h" |
15 #include "cc/test/fake_layer_tree_host_impl.h" | 15 #include "cc/test/fake_layer_tree_host_impl.h" |
16 #include "cc/test/fake_output_surface.h" | 16 #include "cc/test/fake_output_surface.h" |
17 #include "cc/test/fake_proxy.h" | 17 #include "cc/test/fake_proxy.h" |
18 #include "cc/test/geometry_test_utils.h" | 18 #include "cc/test/geometry_test_utils.h" |
19 #include "cc/test/tiled_layer_test_common.h" | 19 #include "cc/test/tiled_layer_test_common.h" |
20 #include "testing/gtest/include/gtest/gtest.h" | 20 #include "testing/gtest/include/gtest/gtest.h" |
21 #include "ui/gfx/rect_conversions.h" | 21 #include "ui/gfx/rect_conversions.h" |
22 #include "ui/gfx/transform.h" | 22 #include "ui/gfx/transform.h" |
23 | 23 |
24 using namespace WebKitTests; | |
25 | |
26 namespace cc { | 24 namespace cc { |
27 namespace { | 25 namespace { |
28 | 26 |
29 class TestOcclusionTracker : public OcclusionTracker { | 27 class TestOcclusionTracker : public OcclusionTracker { |
30 public: | 28 public: |
31 TestOcclusionTracker() | 29 TestOcclusionTracker() |
32 : OcclusionTracker(gfx::Rect(0, 0, 1000, 1000), true) | 30 : OcclusionTracker(gfx::Rect(0, 0, 1000, 1000), true) |
33 , m_layerClipRectInTarget(gfx::Rect(0, 0, 1000, 1000)) | 31 , m_layerClipRectInTarget(gfx::Rect(0, 0, 1000, 1000)) |
34 { | 32 { |
35 // Pretend we have visited a render surface. | 33 // Pretend we have visited a render surface. |
(...skipping 1590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1626 | 1624 |
1627 // Invalidate the entire layer in layer space. When painting, the rect given
to webkit should match the layer's bounds. | 1625 // Invalidate the entire layer in layer space. When painting, the rect given
to webkit should match the layer's bounds. |
1628 layer->setNeedsDisplayRect(layerRect); | 1626 layer->setNeedsDisplayRect(layerRect); |
1629 layer->update(*m_queue.get(), 0, m_stats); | 1627 layer->update(*m_queue.get(), 0, m_stats); |
1630 | 1628 |
1631 EXPECT_RECT_EQ(layerRect, layer->trackingLayerPainter()->paintedRect()); | 1629 EXPECT_RECT_EQ(layerRect, layer->trackingLayerPainter()->paintedRect()); |
1632 } | 1630 } |
1633 | 1631 |
1634 } // namespace | 1632 } // namespace |
1635 } // namespace cc | 1633 } // namespace cc |
OLD | NEW |