diff options
Diffstat (limited to 'cc/layers/nine_patch_layer_impl_unittest.cc')
-rw-r--r-- | cc/layers/nine_patch_layer_impl_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/layers/nine_patch_layer_impl_unittest.cc b/cc/layers/nine_patch_layer_impl_unittest.cc index 6020111..22f2c94 100644 --- a/cc/layers/nine_patch_layer_impl_unittest.cc +++ b/cc/layers/nine_patch_layer_impl_unittest.cc @@ -23,7 +23,7 @@ namespace cc { namespace { -gfx::Rect ToRoundedIntRect(gfx::RectF rect_f) { +gfx::Rect ToRoundedIntRect(const gfx::RectF& rect_f) { return gfx::Rect(gfx::ToRoundedInt(rect_f.x()), gfx::ToRoundedInt(rect_f.y()), gfx::ToRoundedInt(rect_f.width()), @@ -31,9 +31,9 @@ gfx::Rect ToRoundedIntRect(gfx::RectF rect_f) { } void NinePatchLayerLayoutTest(gfx::Size bitmap_size, - gfx::Rect aperture_rect, + const gfx::Rect& aperture_rect, gfx::Size layer_size, - gfx::Rect border, + const gfx::Rect& border, bool fill_center, size_t expected_quad_size) { MockQuadCuller quad_culler; |