OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "cc/blink/web_display_item_list_impl.h" | 5 #include "cc/blink/web_display_item_list_impl.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
| 12 #include "cc/paint/clip_display_item.h" |
| 13 #include "cc/paint/clip_path_display_item.h" |
| 14 #include "cc/paint/compositing_display_item.h" |
| 15 #include "cc/paint/drawing_display_item.h" |
| 16 #include "cc/paint/filter_display_item.h" |
| 17 #include "cc/paint/float_clip_display_item.h" |
12 #include "cc/paint/paint_record.h" | 18 #include "cc/paint/paint_record.h" |
13 #include "cc/playback/clip_display_item.h" | 19 #include "cc/paint/transform_display_item.h" |
14 #include "cc/playback/clip_path_display_item.h" | |
15 #include "cc/playback/compositing_display_item.h" | |
16 #include "cc/playback/drawing_display_item.h" | |
17 #include "cc/playback/filter_display_item.h" | |
18 #include "cc/playback/float_clip_display_item.h" | |
19 #include "cc/playback/transform_display_item.h" | |
20 #include "third_party/WebKit/public/platform/WebFloatRect.h" | 20 #include "third_party/WebKit/public/platform/WebFloatRect.h" |
21 #include "third_party/WebKit/public/platform/WebRect.h" | 21 #include "third_party/WebKit/public/platform/WebRect.h" |
22 #include "third_party/skia/include/core/SkColorFilter.h" | 22 #include "third_party/skia/include/core/SkColorFilter.h" |
23 #include "third_party/skia/include/core/SkMatrix44.h" | 23 #include "third_party/skia/include/core/SkMatrix44.h" |
24 #include "ui/gfx/geometry/rect_conversions.h" | 24 #include "ui/gfx/geometry/rect_conversions.h" |
25 #include "ui/gfx/geometry/safe_integer_conversions.h" | 25 #include "ui/gfx/geometry/safe_integer_conversions.h" |
26 #include "ui/gfx/transform.h" | 26 #include "ui/gfx/transform.h" |
27 | 27 |
28 namespace cc_blink { | 28 namespace cc_blink { |
29 | 29 |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 } | 148 } |
149 | 149 |
150 void WebDisplayItemListImpl::setIsSuitableForGpuRasterization(bool isSuitable) { | 150 void WebDisplayItemListImpl::setIsSuitableForGpuRasterization(bool isSuitable) { |
151 display_item_list_->SetIsSuitableForGpuRasterization(isSuitable); | 151 display_item_list_->SetIsSuitableForGpuRasterization(isSuitable); |
152 } | 152 } |
153 | 153 |
154 WebDisplayItemListImpl::~WebDisplayItemListImpl() { | 154 WebDisplayItemListImpl::~WebDisplayItemListImpl() { |
155 } | 155 } |
156 | 156 |
157 } // namespace cc_blink | 157 } // namespace cc_blink |
OLD | NEW |