OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef WebCompositedDisplayList_h |
| 6 #define WebCompositedDisplayList_h |
| 7 |
| 8 #include "public/platform/WebCommon.h" |
| 9 #include "public/platform/WebPrivateOwnPtr.h" |
| 10 |
| 11 namespace blink { |
| 12 |
| 13 class CompositedDisplayList; |
| 14 |
| 15 class BLINK_PLATFORM_EXPORT WebCompositedDisplayList { |
| 16 public: |
| 17 WebCompositedDisplayList() {} |
| 18 ~WebCompositedDisplayList(); |
| 19 |
| 20 #if INSIDE_BLINK |
| 21 void assign(WTF::PassOwnPtr<CompositedDisplayList>); |
| 22 CompositedDisplayList* compositedDisplayListForTesting(); |
| 23 #endif |
| 24 |
| 25 // TODO(pdr): Add accessor functions for the data in m_private as needed. |
| 26 |
| 27 private: |
| 28 WebPrivateOwnPtr<CompositedDisplayList> m_private; |
| 29 }; |
| 30 |
| 31 } // namespace blink |
| 32 |
| 33 #endif // WebCompositedDisplayList_h |
OLD | NEW |