Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2386)

Unified Diff: cc/test/fake_picture_layer_tiling_client.cc

Issue 565043002: cc: Remove the opaque rect return-parameter from ContentLayerClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: contentlayerclientopaque: build Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/test/fake_content_layer_client.cc ('k') | cc/test/solid_color_content_layer_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_picture_layer_tiling_client.cc
diff --git a/cc/test/fake_picture_layer_tiling_client.cc b/cc/test/fake_picture_layer_tiling_client.cc
index 0503d22ad65348917759fe4b43050c6a8b7765a9..68ff5182d586cd5756cc106c7f520e30915f5fb3 100644
--- a/cc/test/fake_picture_layer_tiling_client.cc
+++ b/cc/test/fake_picture_layer_tiling_client.cc
@@ -44,8 +44,7 @@ scoped_refptr<Tile> FakePictureLayerTilingClient::CreateTile(
const gfx::Rect& rect) {
if (!allow_create_tile_)
return scoped_refptr<Tile>();
- return tile_manager_->CreateTile(
- pile_.get(), tile_size_, rect, gfx::Rect(), 1, 0, 0, 0);
+ return tile_manager_->CreateTile(pile_.get(), tile_size_, rect, 1, 0, 0, 0);
}
PicturePileImpl* FakePictureLayerTilingClient::GetPile() {
« no previous file with comments | « cc/test/fake_content_layer_client.cc ('k') | cc/test/solid_color_content_layer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698