| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 class HitTestResult; | 58 class HitTestResult; |
| 59 class HTMLFormControlElement; | 59 class HTMLFormControlElement; |
| 60 class HTMLInputElement; | 60 class HTMLInputElement; |
| 61 class HTMLSelectElement; | 61 class HTMLSelectElement; |
| 62 class IntRect; | 62 class IntRect; |
| 63 class LocalFrame; | 63 class LocalFrame; |
| 64 class Node; | 64 class Node; |
| 65 class Page; | 65 class Page; |
| 66 class PaintArtifact; | 66 class PaintArtifact; |
| 67 class PopupOpeningObserver; | 67 class PopupOpeningObserver; |
| 68 class WebCompositorAnimationTimeline; | 68 class CompositorAnimationTimeline; |
| 69 class WebFrameScheduler; | 69 class WebFrameScheduler; |
| 70 | 70 |
| 71 struct CompositedSelection; | 71 struct CompositedSelection; |
| 72 struct DateTimeChooserParameters; | 72 struct DateTimeChooserParameters; |
| 73 struct FrameLoadRequest; | 73 struct FrameLoadRequest; |
| 74 struct GraphicsDeviceAdapter; | 74 struct GraphicsDeviceAdapter; |
| 75 struct ViewportDescription; | 75 struct ViewportDescription; |
| 76 struct WindowFeatures; | 76 struct WindowFeatures; |
| 77 | 77 |
| 78 class CORE_EXPORT ChromeClient : public HostWindow { | 78 class CORE_EXPORT ChromeClient : public HostWindow { |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 | 183 |
| 184 // Pass 0 as the GraphicsLayer to detach the root layer. | 184 // Pass 0 as the GraphicsLayer to detach the root layer. |
| 185 // This sets the graphics layer for the LocalFrame's WebWidget, if it has | 185 // This sets the graphics layer for the LocalFrame's WebWidget, if it has |
| 186 // one. Otherwise it sets it for the WebViewImpl. | 186 // one. Otherwise it sets it for the WebViewImpl. |
| 187 virtual void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot)
= 0; | 187 virtual void attachRootGraphicsLayer(GraphicsLayer*, LocalFrame* localRoot)
= 0; |
| 188 | 188 |
| 189 // In Slimming Paint v2, called when the paint artifact is updated, to allow | 189 // In Slimming Paint v2, called when the paint artifact is updated, to allow |
| 190 // the underlying web widget to composite it. | 190 // the underlying web widget to composite it. |
| 191 virtual void didPaint(const PaintArtifact&) { } | 191 virtual void didPaint(const PaintArtifact&) { } |
| 192 | 192 |
| 193 virtual void attachCompositorAnimationTimeline(WebCompositorAnimationTimelin
e*, LocalFrame* localRoot) { } | 193 virtual void attachCompositorAnimationTimeline(CompositorAnimationTimeline*,
LocalFrame* localRoot) { } |
| 194 virtual void detachCompositorAnimationTimeline(WebCompositorAnimationTimelin
e*, LocalFrame* localRoot) { } | 194 virtual void detachCompositorAnimationTimeline(CompositorAnimationTimeline*,
LocalFrame* localRoot) { } |
| 195 | 195 |
| 196 virtual void enterFullScreenForElement(Element*) { } | 196 virtual void enterFullScreenForElement(Element*) { } |
| 197 virtual void exitFullScreenForElement(Element*) { } | 197 virtual void exitFullScreenForElement(Element*) { } |
| 198 | 198 |
| 199 virtual void clearCompositedSelection() { } | 199 virtual void clearCompositedSelection() { } |
| 200 virtual void updateCompositedSelection(const CompositedSelection&) { } | 200 virtual void updateCompositedSelection(const CompositedSelection&) { } |
| 201 | 201 |
| 202 virtual void setEventListenerProperties(WebEventListenerClass, WebEventListe
nerProperties) = 0; | 202 virtual void setEventListenerProperties(WebEventListenerClass, WebEventListe
nerProperties) = 0; |
| 203 virtual WebEventListenerProperties eventListenerProperties(WebEventListenerC
lass) const = 0; | 203 virtual WebEventListenerProperties eventListenerProperties(WebEventListenerC
lass) const = 0; |
| 204 virtual void setHaveScrollEventHandlers(bool) = 0; | 204 virtual void setHaveScrollEventHandlers(bool) = 0; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 | 281 |
| 282 LayoutPoint m_lastToolTipPoint; | 282 LayoutPoint m_lastToolTipPoint; |
| 283 String m_lastToolTipText; | 283 String m_lastToolTipText; |
| 284 | 284 |
| 285 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 285 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 286 }; | 286 }; |
| 287 | 287 |
| 288 } // namespace blink | 288 } // namespace blink |
| 289 | 289 |
| 290 #endif // ChromeClient_h | 290 #endif // ChromeClient_h |
| OLD | NEW |