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

Unified Diff: cc/test/fake_picture_layer_tiling_client.cc

Issue 69343005: Added preliminary support for tile rasterization with Ganesh (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for tests that pass NULL resource_provider/context_provider. Created 7 years, 1 month 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
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 7ebd179ab52d857c42dc865270e54272d37844dc..be2b222b545ca56f52e133ee03b7528a124e0b6a 100644
--- a/cc/test/fake_picture_layer_tiling_client.cc
+++ b/cc/test/fake_picture_layer_tiling_client.cc
@@ -46,7 +46,7 @@ scoped_refptr<Tile> FakePictureLayerTilingClient::CreateTile(
if (!allow_create_tile_)
return scoped_refptr<Tile>();
return tile_manager_->CreateTile(
- pile_.get(), tile_size_, rect, gfx::Rect(), 1, 0, 0, true);
+ pile_.get(), tile_size_, rect, gfx::Rect(), 1, 0, 0, true, false);
}
void FakePictureLayerTilingClient::SetTileSize(gfx::Size tile_size) {

Powered by Google App Engine
This is Rietveld 408576698