OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, 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 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 // one. Otherwise it sets it for the WebViewImpl. | 201 // one. Otherwise it sets it for the WebViewImpl. |
202 virtual void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot)
= 0; | 202 virtual void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot)
= 0; |
203 | 203 |
204 // In Slimming Paint v2, called when the paint artifact is updated, to allow | 204 // In Slimming Paint v2, called when the paint artifact is updated, to allow |
205 // the underlying web widget to composite it. | 205 // the underlying web widget to composite it. |
206 virtual void didPaint(const PaintArtifact&) { } | 206 virtual void didPaint(const PaintArtifact&) { } |
207 | 207 |
208 virtual void attachCompositorAnimationTimeline(CompositorAnimationTimeline*,
LocalFrame* localRoot) { } | 208 virtual void attachCompositorAnimationTimeline(CompositorAnimationTimeline*,
LocalFrame* localRoot) { } |
209 virtual void detachCompositorAnimationTimeline(CompositorAnimationTimeline*,
LocalFrame* localRoot) { } | 209 virtual void detachCompositorAnimationTimeline(CompositorAnimationTimeline*,
LocalFrame* localRoot) { } |
210 | 210 |
211 virtual void enterFullScreenForElement(Element*) { } | 211 virtual void enterFullscreenForElement(Element*) { } |
212 virtual void exitFullScreenForElement(Element*) { } | 212 virtual void exitFullscreenForElement(Element*) { } |
213 | 213 |
214 virtual void clearCompositedSelection(LocalFrame*) { } | 214 virtual void clearCompositedSelection(LocalFrame*) { } |
215 virtual void updateCompositedSelection(LocalFrame*, const CompositedSelectio
n&) { } | 215 virtual void updateCompositedSelection(LocalFrame*, const CompositedSelectio
n&) { } |
216 | 216 |
217 virtual void setEventListenerProperties(WebEventListenerClass, WebEventListe
nerProperties) = 0; | 217 virtual void setEventListenerProperties(WebEventListenerClass, WebEventListe
nerProperties) = 0; |
218 virtual WebEventListenerProperties eventListenerProperties(WebEventListenerC
lass) const = 0; | 218 virtual WebEventListenerProperties eventListenerProperties(WebEventListenerC
lass) const = 0; |
219 virtual void setHasScrollEventHandlers(bool) = 0; | 219 virtual void setHasScrollEventHandlers(bool) = 0; |
220 virtual bool hasScrollEventHandlers() const = 0; | 220 virtual bool hasScrollEventHandlers() const = 0; |
221 | 221 |
222 virtual void setTouchAction(TouchAction) = 0; | 222 virtual void setTouchAction(TouchAction) = 0; |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 | 303 |
304 LayoutPoint m_lastToolTipPoint; | 304 LayoutPoint m_lastToolTipPoint; |
305 String m_lastToolTipText; | 305 String m_lastToolTipText; |
306 | 306 |
307 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 307 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
308 }; | 308 }; |
309 | 309 |
310 } // namespace blink | 310 } // namespace blink |
311 | 311 |
312 #endif // ChromeClient_h | 312 #endif // ChromeClient_h |
OLD | NEW |