Chromium Code Reviews| Index: Source/web/WebViewImpl.h |
| diff --git a/Source/web/WebViewImpl.h b/Source/web/WebViewImpl.h |
| index 85d2741d0bf2fb862c8b970e8c7b0404972180a0..c56f30f4afd3817740282e75a070c7f70bf87ec4 100644 |
| --- a/Source/web/WebViewImpl.h |
| +++ b/Source/web/WebViewImpl.h |
| @@ -271,6 +271,9 @@ public: |
| void setShowScrollBottleneckRects(bool) override; |
| void acceptLanguagesChanged() override; |
| + void setCompositedDisplayList(WebCompositedDisplayList*) override; |
| + WebCompositedDisplayList* compositedDisplayList() override; |
| + |
| // WebViewImpl |
| void enableViewport(); |
| void disableViewport(); |
| @@ -740,6 +743,8 @@ private: |
| bool m_recreatingGraphicsContext; |
| static const WebInputEvent* m_currentInputEvent; |
| + OwnPtr<WebCompositedDisplayList> m_compositedDisplayList; |
|
jbroman
2015/08/19 18:33:50
Nit: we could consider making WebCompositedDisplay
pdr.
2015/08/20 04:01:55
This worked out nicely since it moves the WebCDL <
|
| + |
| MediaKeysClientImpl m_mediaKeysClientImpl; |
| OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; |
| WebPoint m_positionOnFlingStart; |