OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 "platform/graphics/compositing/PaintChunksToCcLayer.h" | 5 #include "platform/graphics/compositing/PaintChunksToCcLayer.h" |
6 | 6 |
7 #include "cc/playback/compositing_display_item.h" | 7 #include "cc/paint/compositing_display_item.h" |
8 #include "cc/playback/display_item_list.h" | 8 #include "cc/paint/display_item_list.h" |
9 #include "cc/playback/drawing_display_item.h" | 9 #include "cc/paint/drawing_display_item.h" |
10 #include "cc/playback/filter_display_item.h" | 10 #include "cc/paint/filter_display_item.h" |
11 #include "cc/playback/float_clip_display_item.h" | 11 #include "cc/paint/float_clip_display_item.h" |
12 #include "cc/playback/transform_display_item.h" | 12 #include "cc/paint/transform_display_item.h" |
13 #include "platform/graphics/GraphicsContext.h" | 13 #include "platform/graphics/GraphicsContext.h" |
14 #include "platform/graphics/paint/DisplayItemList.h" | 14 #include "platform/graphics/paint/DisplayItemList.h" |
15 #include "platform/graphics/paint/DrawingDisplayItem.h" | 15 #include "platform/graphics/paint/DrawingDisplayItem.h" |
16 #include "platform/graphics/paint/GeometryMapper.h" | 16 #include "platform/graphics/paint/GeometryMapper.h" |
17 #include "platform/graphics/paint/PaintChunk.h" | 17 #include "platform/graphics/paint/PaintChunk.h" |
18 #include "platform/graphics/paint/PropertyTreeState.h" | 18 #include "platform/graphics/paint/PropertyTreeState.h" |
19 | 19 |
20 namespace blink { | 20 namespace blink { |
21 | 21 |
22 namespace { | 22 namespace { |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 recordPairedEndDisplayItems(endDisplayItems, ccList.get()); | 235 recordPairedEndDisplayItems(endDisplayItems, ccList.get()); |
236 } | 236 } |
237 | 237 |
238 ccList->CreateAndAppendPairedEndItem<cc::EndTransformDisplayItem>(); | 238 ccList->CreateAndAppendPairedEndItem<cc::EndTransformDisplayItem>(); |
239 | 239 |
240 ccList->Finalize(); | 240 ccList->Finalize(); |
241 return ccList; | 241 return ccList; |
242 } | 242 } |
243 | 243 |
244 } // namespace blink | 244 } // namespace blink |
OLD | NEW |