| Index: webkit/compositor_bindings/web_layer_impl_fixed_bounds_unittest.cc
|
| ===================================================================
|
| --- webkit/compositor_bindings/web_layer_impl_fixed_bounds_unittest.cc (revision 190264)
|
| +++ webkit/compositor_bindings/web_layer_impl_fixed_bounds_unittest.cc (working copy)
|
| @@ -128,14 +128,14 @@
|
| root_layer->addChild(normal_layer);
|
|
|
| std::vector<scoped_refptr<cc::Layer> > render_surface_layer_list;
|
| - cc::LayerTreeHostCommon::CalculateDrawProperties(
|
| + cc::LayerTreeHostCommon::calculateDrawProperties(
|
| root_layer->layer(),
|
| kDeviceViewportSize,
|
| kDeviceScaleFactor,
|
| kPageScaleFactor,
|
| kMaxTextureSize,
|
| false,
|
| - &render_surface_layer_list);
|
| + render_surface_layer_list);
|
| ExpectEqualLayerRectsInTarget(normal_layer->layer(),
|
| fixed_bounds_layer->layer());
|
| ExpectEqualLayerRectsInTarget(sublayer_under_normal_layer->layer(),
|
| @@ -144,14 +144,14 @@
|
| // Change of fixed bounds should not affect the target geometries.
|
| fixed_bounds_layer->SetFixedBounds(gfx::Size(fixed_bounds.width() / 2,
|
| fixed_bounds.height() * 2));
|
| - cc::LayerTreeHostCommon::CalculateDrawProperties(
|
| + cc::LayerTreeHostCommon::calculateDrawProperties(
|
| root_layer->layer(),
|
| kDeviceViewportSize,
|
| kDeviceScaleFactor,
|
| kPageScaleFactor,
|
| kMaxTextureSize,
|
| false,
|
| - &render_surface_layer_list);
|
| + render_surface_layer_list);
|
| ExpectEqualLayerRectsInTarget(normal_layer->layer(),
|
| fixed_bounds_layer->layer());
|
| ExpectEqualLayerRectsInTarget(sublayer_under_normal_layer->layer(),
|
|
|