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

Side by Side Diff: Source/web/ChromeClientImpl.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 | « Source/platform/graphics/CompositedDisplayList.h ('k') | Source/web/ChromeClientImpl.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 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 void setCursor(const Cursor&) override; 112 void setCursor(const Cursor&) override;
113 Cursor lastSetCursorForTesting() const override; 113 Cursor lastSetCursorForTesting() const override;
114 void needTouchEvents(bool needTouchEvents) override; 114 void needTouchEvents(bool needTouchEvents) override;
115 void setTouchAction(TouchAction) override; 115 void setTouchAction(TouchAction) override;
116 116
117 GraphicsLayerFactory* graphicsLayerFactory() const override; 117 GraphicsLayerFactory* graphicsLayerFactory() const override;
118 118
119 // Pass 0 as the GraphicsLayer to detatch the root layer. 119 // Pass 0 as the GraphicsLayer to detatch the root layer.
120 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override ; 120 void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot) override ;
121 121
122 void setCompositedDisplayList(PassOwnPtr<CompositedDisplayList>) override;
123 CompositedDisplayList* compositedDisplayListForTesting() override;
124
122 void attachCompositorAnimationTimeline(WebCompositorAnimationTimeline*, Loca lFrame* localRoot) override; 125 void attachCompositorAnimationTimeline(WebCompositorAnimationTimeline*, Loca lFrame* localRoot) override;
123 void detachCompositorAnimationTimeline(WebCompositorAnimationTimeline*, Loca lFrame* localRoot) override; 126 void detachCompositorAnimationTimeline(WebCompositorAnimationTimeline*, Loca lFrame* localRoot) override;
124 127
125 void enterFullScreenForElement(Element*) override; 128 void enterFullScreenForElement(Element*) override;
126 void exitFullScreenForElement(Element*) override; 129 void exitFullScreenForElement(Element*) override;
127 130
128 void clearCompositedSelection() override; 131 void clearCompositedSelection() override;
129 void updateCompositedSelection(const CompositedSelection&) override; 132 void updateCompositedSelection(const CompositedSelection&) override;
130 133
131 // ChromeClient methods: 134 // ChromeClient methods:
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 WindowFeatures m_windowFeatures; 186 WindowFeatures m_windowFeatures;
184 Vector<PopupOpeningObserver*> m_popupOpeningObservers; 187 Vector<PopupOpeningObserver*> m_popupOpeningObservers;
185 Cursor m_lastSetMouseCursorForTesting; 188 Cursor m_lastSetMouseCursorForTesting;
186 }; 189 };
187 190
188 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl()); 191 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl());
189 192
190 } // namespace blink 193 } // namespace blink
191 194
192 #endif 195 #endif
OLDNEW
« no previous file with comments | « Source/platform/graphics/CompositedDisplayList.h ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698