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

Unified Diff: cc/playback/float_clip_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/float_clip_display_item.cc
diff --git a/cc/playback/float_clip_display_item.cc b/cc/playback/float_clip_display_item.cc
index ae8e0b5d21219e9867c7ca4e5d851bf9033f9a84..ce59d21236e4eb69d5ef2071db41692a3ae0b817 100644
--- a/cc/playback/float_clip_display_item.cc
+++ b/cc/playback/float_clip_display_item.cc
@@ -43,7 +43,6 @@ void FloatClipDisplayItem::FromProtobuf(const proto::DisplayItem& proto) {
}
void FloatClipDisplayItem::Raster(SkCanvas* canvas,
- const gfx::Rect& canvas_target_playback_rect,
SkPicture::AbortCallback* callback) const {
canvas->save();
canvas->clipRect(gfx::RectFToSkRect(clip_rect_));
@@ -75,7 +74,6 @@ void EndFloatClipDisplayItem::FromProtobuf(const proto::DisplayItem& proto) {
void EndFloatClipDisplayItem::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