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