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/trees/layer_tree_host_common.h" | 5 #include "cc/trees/layer_tree_host_common.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "cc/animation/layer_animation_controller.h" | 10 #include "cc/animation/layer_animation_controller.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 #include "cc/test/fake_layer_tree_host_impl.h" | 26 #include "cc/test/fake_layer_tree_host_impl.h" |
27 #include "cc/test/fake_picture_layer.h" | 27 #include "cc/test/fake_picture_layer.h" |
28 #include "cc/test/fake_picture_layer_impl.h" | 28 #include "cc/test/fake_picture_layer_impl.h" |
29 #include "cc/test/geometry_test_utils.h" | 29 #include "cc/test/geometry_test_utils.h" |
30 #include "cc/test/layer_tree_host_common_test.h" | 30 #include "cc/test/layer_tree_host_common_test.h" |
31 #include "cc/trees/layer_tree_impl.h" | 31 #include "cc/trees/layer_tree_impl.h" |
32 #include "cc/trees/proxy.h" | 32 #include "cc/trees/proxy.h" |
33 #include "cc/trees/single_thread_proxy.h" | 33 #include "cc/trees/single_thread_proxy.h" |
34 #include "testing/gmock/include/gmock/gmock.h" | 34 #include "testing/gmock/include/gmock/gmock.h" |
35 #include "testing/gtest/include/gtest/gtest.h" | 35 #include "testing/gtest/include/gtest/gtest.h" |
36 #include "ui/gfx/quad_f.h" | 36 #include "ui/gfx/geometry/quad_f.h" |
37 #include "ui/gfx/transform.h" | 37 #include "ui/gfx/transform.h" |
38 | 38 |
39 namespace cc { | 39 namespace cc { |
40 namespace { | 40 namespace { |
41 | 41 |
42 class LayerWithForcedDrawsContent : public Layer { | 42 class LayerWithForcedDrawsContent : public Layer { |
43 public: | 43 public: |
44 LayerWithForcedDrawsContent() {} | 44 LayerWithForcedDrawsContent() {} |
45 | 45 |
46 bool DrawsContent() const override; | 46 bool DrawsContent() const override; |
(...skipping 8510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8557 // by the viewport. | 8557 // by the viewport. |
8558 EXPECT_EQ(gfx::Rect(768 / 2, 582 / 2), root->visible_content_rect()); | 8558 EXPECT_EQ(gfx::Rect(768 / 2, 582 / 2), root->visible_content_rect()); |
8559 | 8559 |
8560 // Layers drawing to a child render surface should still have their visible | 8560 // Layers drawing to a child render surface should still have their visible |
8561 // content rect clipped by the viewport. | 8561 // content rect clipped by the viewport. |
8562 EXPECT_EQ(gfx::Rect(768 / 2, 582 / 2), content->visible_content_rect()); | 8562 EXPECT_EQ(gfx::Rect(768 / 2, 582 / 2), content->visible_content_rect()); |
8563 } | 8563 } |
8564 | 8564 |
8565 } // namespace | 8565 } // namespace |
8566 } // namespace cc | 8566 } // namespace cc |
OLD | NEW |