| 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(LocalFrame*, | 260 virtual void setEventListenerProperties(LocalFrame*, |
| 262 WebEventListenerClass, | 261 WebEventListenerClass, |
| 263 WebEventListenerProperties) = 0; | 262 WebEventListenerProperties) = 0; |
| 264 virtual WebEventListenerProperties eventListenerProperties( | 263 virtual WebEventListenerProperties eventListenerProperties( |
| 265 LocalFrame*, | 264 LocalFrame*, |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 WeakMember<Node> m_lastMouseOverNode; | 369 WeakMember<Node> m_lastMouseOverNode; |
| 371 LayoutPoint m_lastToolTipPoint; | 370 LayoutPoint m_lastToolTipPoint; |
| 372 String m_lastToolTipText; | 371 String m_lastToolTipText; |
| 373 | 372 |
| 374 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 373 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 375 }; | 374 }; |
| 376 | 375 |
| 377 } // namespace blink | 376 } // namespace blink |
| 378 | 377 |
| 379 #endif // ChromeClient_h | 378 #endif // ChromeClient_h |
| OLD | NEW |