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

Side by Side Diff: public/platform/WebCompositedDisplayList.h

Issue 1301033002: Plumb CompositedDisplayList to WebViewImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: papa delta romeo request for landing via cq, over 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 | « public/BUILD.gn ('k') | public/web/WebView.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
19 #if INSIDE_BLINK
20 void assign(WTF::PassOwnPtr<CompositedDisplayList>);
21 #endif
22
23 ~WebCompositedDisplayList();
jbroman 2015/08/20 20:24:47 super-nit: please move the destructor above member
24
25 #if INSIDE_BLINK
26 CompositedDisplayList* compositedDisplayListForTesting();
27 #endif
28
29 // TODO(pdr): Add accessor functions for the data in m_private as needed.
30
31 private:
32 WebPrivateOwnPtr<CompositedDisplayList> m_private;
33 };
34
35 } // namespace blink
36
37 #endif // WebCompositedDisplayList_h
OLDNEW
« no previous file with comments | « public/BUILD.gn ('k') | public/web/WebView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698