Update V8 to version 4.7.37.
[chromium-blink-merge.git] / cc / playback / filter_display_item.h
blob9672878752a6ec3eed8f976a4a85b99e7a8ce378
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CC_PLAYBACK_FILTER_DISPLAY_ITEM_H_
6 #define CC_PLAYBACK_FILTER_DISPLAY_ITEM_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "cc/base/cc_export.h"
10 #include "cc/output/filter_operations.h"
11 #include "cc/playback/display_item.h"
12 #include "ui/gfx/geometry/rect_f.h"
14 class SkCanvas;
16 namespace cc {
18 class CC_EXPORT FilterDisplayItem : public DisplayItem {
19 public:
20 FilterDisplayItem();
21 ~FilterDisplayItem() override;
23 void SetNew(const FilterOperations& filters, const gfx::RectF& bounds);
25 void Raster(SkCanvas* canvas,
26 const gfx::Rect& canvas_target_playback_rect,
27 SkPicture::AbortCallback* callback) const override;
28 void AsValueInto(base::trace_event::TracedValue* array) const override;
30 private:
31 FilterOperations filters_;
32 gfx::RectF bounds_;
35 class CC_EXPORT EndFilterDisplayItem : public DisplayItem {
36 public:
37 EndFilterDisplayItem();
38 ~EndFilterDisplayItem() override;
40 static scoped_ptr<EndFilterDisplayItem> Create() {
41 return make_scoped_ptr(new EndFilterDisplayItem());
44 void Raster(SkCanvas* canvas,
45 const gfx::Rect& canvas_target_playback_rect,
46 SkPicture::AbortCallback* callback) const override;
47 void AsValueInto(base::trace_event::TracedValue* array) const override;
50 } // namespace cc
52 #endif // CC_PLAYBACK_FILTER_DISPLAY_ITEM_H_