cc: Adding DidFinishImplFrame to LTHI.
[chromium-blink-merge.git] / cc / resources / transform_display_item.h
blobfe0dbd236fe4cabacda55904a757a4a30c059b79
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_RESOURCES_TRANSFORM_DISPLAY_ITEM_H_
6 #define CC_RESOURCES_TRANSFORM_DISPLAY_ITEM_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "cc/base/cc_export.h"
10 #include "cc/resources/display_item.h"
11 #include "ui/gfx/transform.h"
13 class SkCanvas;
14 class SkDrawPictureCallback;
16 namespace cc {
18 class CC_EXPORT TransformDisplayItem : public DisplayItem {
19 public:
20 ~TransformDisplayItem() override;
22 static scoped_ptr<TransformDisplayItem> Create(
23 const gfx::Transform& transform) {
24 return make_scoped_ptr(new TransformDisplayItem(transform));
27 void Raster(SkCanvas* canvas, SkDrawPictureCallback* callback) const override;
29 bool IsSuitableForGpuRasterization() const override;
30 int ApproximateOpCount() const override;
31 size_t PictureMemoryUsage() const override;
32 void AsValueInto(base::trace_event::TracedValue* array) const override;
34 protected:
35 explicit TransformDisplayItem(const gfx::Transform& transform);
37 private:
38 gfx::Transform transform_;
41 class CC_EXPORT EndTransformDisplayItem : public DisplayItem {
42 public:
43 ~EndTransformDisplayItem() override;
45 static scoped_ptr<EndTransformDisplayItem> Create() {
46 return make_scoped_ptr(new EndTransformDisplayItem());
49 void Raster(SkCanvas* canvas, SkDrawPictureCallback* callback) const override;
51 bool IsSuitableForGpuRasterization() const override;
52 int ApproximateOpCount() const override;
53 size_t PictureMemoryUsage() const override;
54 void AsValueInto(base::trace_event::TracedValue* array) const override;
56 protected:
57 EndTransformDisplayItem();
60 } // namespace cc
62 #endif // CC_RESOURCES_TRANSFORM_DISPLAY_ITEM_H_