Pass the affected tree in AXTreeDelegate calls.
[chromium-blink-merge.git] / cc / playback / filter_display_item.h
blob658d541059e5ad6930a9b670f8293b96141423dc
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 SkPicture::AbortCallback* callback) const override;
27 void AsValueInto(base::trace_event::TracedValue* array) const override;
29 private:
30 FilterOperations filters_;
31 gfx::RectF bounds_;
34 class CC_EXPORT EndFilterDisplayItem : public DisplayItem {
35 public:
36 EndFilterDisplayItem();
37 ~EndFilterDisplayItem() override;
39 static scoped_ptr<EndFilterDisplayItem> Create() {
40 return make_scoped_ptr(new EndFilterDisplayItem());
43 void Raster(SkCanvas* canvas,
44 SkPicture::AbortCallback* callback) const override;
45 void AsValueInto(base::trace_event::TracedValue* array) const override;
48 } // namespace cc
50 #endif // CC_PLAYBACK_FILTER_DISPLAY_ITEM_H_