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

Side by Side Diff: Source/core/compositing/DisplayListCompositingBuilder.h

Issue 1301033002: Plumb CompositedDisplayList to WebViewImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Final checklist: cleanup ordering in WebCompositedDisplayList Created 5 years, 4 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
« no previous file with comments | « no previous file | Source/core/compositing/DisplayListCompositingTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 DisplayListCompositingBuilder_h 5 #ifndef DisplayListCompositingBuilder_h
6 #define DisplayListCompositingBuilder_h 6 #define DisplayListCompositingBuilder_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "platform/graphics/CompositedDisplayList.h"
9 #include "platform/graphics/paint/DisplayItemList.h" 10 #include "platform/graphics/paint/DisplayItemList.h"
10 #include "platform/graphics/paint/DisplayItemTransformTree.h"
11 11
12 namespace blink { 12 namespace blink {
13 13
14 struct CompositedDisplayList {
15 // TODO(pdr): Also add our SimpleLayers here.
16 // TODO(pdr): Add the additional property trees (e.g., clip, scroll, etc).
17 OwnPtr<const DisplayItemTransformTree> transformTree;
18 };
19
20 class CORE_EXPORT DisplayListCompositingBuilder { 14 class CORE_EXPORT DisplayListCompositingBuilder {
21 public: 15 public:
22 DisplayListCompositingBuilder(const DisplayItemList& displayItemList, const DisplayListDiff&) 16 DisplayListCompositingBuilder(const DisplayItemList& displayItemList, const DisplayListDiff&)
23 : m_displayItemList(displayItemList) { } 17 : m_displayItemList(displayItemList) { }
24 18
25 void build(CompositedDisplayList&); 19 void build(CompositedDisplayList&);
26 20
27 private: 21 private:
28 const DisplayItemList& m_displayItemList; 22 const DisplayItemList& m_displayItemList;
29 }; 23 };
30 24
31 } // namespace blink 25 } // namespace blink
32 26
33 #endif // DisplayListCompositingBuilder_h 27 #endif // DisplayListCompositingBuilder_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/compositing/DisplayListCompositingTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698