Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: third_party/WebKit/Source/platform/graphics/compositing/PaintChunksToCcLayer.cpp

Issue 2748263002: Move cc::DisplayItemList and related classes into cc/paint/ (Closed)
Patch Set: Merge branch 'master' into ccpaint Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp ('k') | ui/compositor/canvas_painter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698