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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/CompositedDisplayList.h

Issue 1401363003: Rename DisplayItemList to PaintController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef CompositedDisplayList_h 5 #ifndef CompositedDisplayList_h
6 #define CompositedDisplayList_h 6 #define CompositedDisplayList_h
7 7
8 #include "platform/graphics/paint/DisplayItemList.h"
9 #include "platform/graphics/paint/DisplayItemTransformTree.h" 8 #include "platform/graphics/paint/DisplayItemTransformTree.h"
9 #include "platform/graphics/paint/PaintController.h"
10 10
11 namespace blink { 11 namespace blink {
12 12
13 // The result of running the simple layer compositing algorithm. See: 13 // The result of running the simple layer compositing algorithm. See:
14 // https://docs.google.com/document/d/1qF7wpO_lhuxUO6YXKZ3CJuXi0grcb5gKZJBBgnoTd 0k/view 14 // https://docs.google.com/document/d/1qF7wpO_lhuxUO6YXKZ3CJuXi0grcb5gKZJBBgnoTd 0k/view
15 class CompositedDisplayList { 15 class CompositedDisplayList {
16 public: 16 public:
17 // TODO(pdr): Also add our SimpleLayers here. 17 // TODO(pdr): Also add our SimpleLayers here.
18 // TODO(pdr): Add the additional property trees (e.g., clip, scroll, etc). 18 // TODO(pdr): Add the additional property trees (e.g., clip, scroll, etc).
19 OwnPtr<const DisplayItemTransformTree> transformTree; 19 OwnPtr<const DisplayItemTransformTree> transformTree;
20 }; 20 };
21 21
22 } // namespace blink 22 } // namespace blink
23 23
24 #endif // CompositedDisplayList_h 24 #endif // CompositedDisplayList_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698