Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 | |
|
suzyh_UTC10 (ex-contributor)
2017/05/05 04:27:30
Accidental extra line?
chrishtr
2017/05/05 05:34:52
Fixed.
| |
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 2 // Copyright 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 3 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 4 // found in the LICENSE file. |
| 4 | 5 |
| 5 #include "cc/trees/layer_tree_host_common.h" | 6 #include "cc/trees/layer_tree_host_common.h" |
| 6 | 7 |
| 7 #include <stddef.h> | 8 #include <stddef.h> |
| 8 | 9 |
| 9 #include <algorithm> | 10 #include <algorithm> |
| 10 #include <memory> | 11 #include <memory> |
| (...skipping 10894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 10905 | 10906 |
| 10906 // Check child layer draw properties. | 10907 // Check child layer draw properties. |
| 10907 EXPECT_EQ(gfx::Rect(10, 10), child->visible_layer_rect()); | 10908 EXPECT_EQ(gfx::Rect(10, 10), child->visible_layer_rect()); |
| 10908 EXPECT_EQ(gfx::Transform(), child->DrawTransform()); | 10909 EXPECT_EQ(gfx::Transform(), child->DrawTransform()); |
| 10909 EXPECT_EQ(gfx::Rect(10, 10), child->clip_rect()); | 10910 EXPECT_EQ(gfx::Rect(10, 10), child->clip_rect()); |
| 10910 EXPECT_EQ(gfx::Rect(10, 10), child->drawable_content_rect()); | 10911 EXPECT_EQ(gfx::Rect(10, 10), child->drawable_content_rect()); |
| 10911 } | 10912 } |
| 10912 | 10913 |
| 10913 } // namespace | 10914 } // namespace |
| 10914 } // namespace cc | 10915 } // namespace cc |
| OLD | NEW |