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

Unified Diff: cc/playback/clip_path_display_item.cc

Issue 1484163002: Raster display item lists via a visual rect RTree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync to head. Created 5 years 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/playback/clip_path_display_item.cc
diff --git a/cc/playback/clip_path_display_item.cc b/cc/playback/clip_path_display_item.cc
index 2168ee1f9cd8a2c1cea4c604382477ac9684a19b..81c8829a6925dac6cffd8f460b3d74259c832909 100644
--- a/cc/playback/clip_path_display_item.cc
+++ b/cc/playback/clip_path_display_item.cc
@@ -65,7 +65,6 @@ void ClipPathDisplayItem::FromProtobuf(const proto::DisplayItem& proto) {
}
void ClipPathDisplayItem::Raster(SkCanvas* canvas,
- const gfx::Rect& canvas_target_playback_rect,
SkPicture::AbortCallback* callback) const {
canvas->save();
canvas->clipPath(clip_path_, clip_op_, antialias_);
@@ -97,7 +96,6 @@ void EndClipPathDisplayItem::FromProtobuf(const proto::DisplayItem& proto) {
void EndClipPathDisplayItem::Raster(
SkCanvas* canvas,
- const gfx::Rect& canvas_target_playback_rect,
SkPicture::AbortCallback* callback) const {
canvas->restore();
}

Powered by Google App Engine
This is Rietveld 408576698