| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights |
| 3 * reserved. | 3 * reserved. |
| 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 // one. Otherwise it sets it for the WebViewImpl. | 244 // one. Otherwise it sets it for the WebViewImpl. |
| 245 virtual void attachRootLayer(WebLayer*, LocalFrame* localRoot) = 0; | 245 virtual void attachRootLayer(WebLayer*, LocalFrame* localRoot) = 0; |
| 246 | 246 |
| 247 virtual void attachCompositorAnimationTimeline(CompositorAnimationTimeline*, | 247 virtual void attachCompositorAnimationTimeline(CompositorAnimationTimeline*, |
| 248 LocalFrame* localRoot) {} | 248 LocalFrame* localRoot) {} |
| 249 virtual void detachCompositorAnimationTimeline(CompositorAnimationTimeline*, | 249 virtual void detachCompositorAnimationTimeline(CompositorAnimationTimeline*, |
| 250 LocalFrame* localRoot) {} | 250 LocalFrame* localRoot) {} |
| 251 | 251 |
| 252 virtual void enterFullscreen(LocalFrame&) {} | 252 virtual void enterFullscreen(LocalFrame&) {} |
| 253 virtual void exitFullscreen(LocalFrame&) {} | 253 virtual void exitFullscreen(LocalFrame&) {} |
| 254 virtual void fullscreenElementChanged(Element* fromElement, | 254 virtual void fullscreenElementChanged(Element*, Element*) {} |
| 255 Element* toElement) {} | |
| 256 | 255 |
| 257 virtual void clearCompositedSelection(LocalFrame*) {} | 256 virtual void clearCompositedSelection(LocalFrame*) {} |
| 258 virtual void updateCompositedSelection(LocalFrame*, | 257 virtual void updateCompositedSelection(LocalFrame*, |
| 259 const CompositedSelection&) {} | 258 const CompositedSelection&) {} |
| 260 | 259 |
| 261 virtual void setEventListenerProperties(WebEventListenerClass, | 260 virtual void setEventListenerProperties(WebEventListenerClass, |
| 262 WebEventListenerProperties) = 0; | 261 WebEventListenerProperties) = 0; |
| 263 virtual WebEventListenerProperties eventListenerProperties( | 262 virtual WebEventListenerProperties eventListenerProperties( |
| 264 WebEventListenerClass) const = 0; | 263 WebEventListenerClass) const = 0; |
| 265 virtual void setHasScrollEventHandlers(bool) = 0; | 264 virtual void setHasScrollEventHandlers(bool) = 0; |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 WeakMember<Node> m_lastMouseOverNode; | 367 WeakMember<Node> m_lastMouseOverNode; |
| 369 LayoutPoint m_lastToolTipPoint; | 368 LayoutPoint m_lastToolTipPoint; |
| 370 String m_lastToolTipText; | 369 String m_lastToolTipText; |
| 371 | 370 |
| 372 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 371 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 373 }; | 372 }; |
| 374 | 373 |
| 375 } // namespace blink | 374 } // namespace blink |
| 376 | 375 |
| 377 #endif // ChromeClient_h | 376 #endif // ChromeClient_h |
| OLD | NEW |