| 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 39ae923dd47cc939c568ff06ba9bcc4d8ffab0c5..7a2ec04ffbb6c7b57912b16e7ed2242b5efb2f57 100644
|
| --- a/cc/playback/float_clip_display_item.cc
|
| +++ b/cc/playback/float_clip_display_item.cc
|
| @@ -4,43 +4,16 @@
|
|
|
| #include "cc/playback/float_clip_display_item.h"
|
|
|
| -#include <stddef.h>
|
| -
|
| -#include "base/strings/stringprintf.h"
|
| -#include "base/trace_event/trace_event_argument.h"
|
| -#include "third_party/skia/include/core/SkCanvas.h"
|
| -#include "ui/gfx/skia_util.h"
|
| -
|
| namespace cc {
|
|
|
| FloatClipDisplayItem::FloatClipDisplayItem(const gfx::RectF& clip_rect)
|
| - : DisplayItem(FLOAT_CLIP) {
|
| - SetNew(clip_rect);
|
| -}
|
| -
|
| -FloatClipDisplayItem::~FloatClipDisplayItem() {
|
| -}
|
| + : DisplayItem(FLOAT_CLIP), clip_rect(clip_rect) {}
|
|
|
| -void FloatClipDisplayItem::SetNew(const gfx::RectF& clip_rect) {
|
| - clip_rect_ = clip_rect;
|
| -}
|
| -
|
| -void FloatClipDisplayItem::Raster(SkCanvas* canvas,
|
| - SkPicture::AbortCallback* callback) const {
|
| - canvas->save();
|
| - canvas->clipRect(gfx::RectFToSkRect(clip_rect_));
|
| -}
|
| +FloatClipDisplayItem::~FloatClipDisplayItem() = default;
|
|
|
| EndFloatClipDisplayItem::EndFloatClipDisplayItem()
|
| : DisplayItem(END_FLOAT_CLIP) {}
|
|
|
| -EndFloatClipDisplayItem::~EndFloatClipDisplayItem() {
|
| -}
|
| -
|
| -void EndFloatClipDisplayItem::Raster(
|
| - SkCanvas* canvas,
|
| - SkPicture::AbortCallback* callback) const {
|
| - canvas->restore();
|
| -}
|
| +EndFloatClipDisplayItem::~EndFloatClipDisplayItem() = default;
|
|
|
| } // namespace cc
|
|
|