| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 virtual void RegisterViewportLayers() const {} | 320 virtual void RegisterViewportLayers() const {} |
| 321 | 321 |
| 322 virtual void ShowUnhandledTapUIIfNeeded(IntPoint, Node*, bool) {} | 322 virtual void ShowUnhandledTapUIIfNeeded(IntPoint, Node*, bool) {} |
| 323 | 323 |
| 324 virtual void OnMouseDown(Node&) {} | 324 virtual void OnMouseDown(Node&) {} |
| 325 | 325 |
| 326 virtual void DidUpdateBrowserControls() const {} | 326 virtual void DidUpdateBrowserControls() const {} |
| 327 | 327 |
| 328 virtual void RegisterPopupOpeningObserver(PopupOpeningObserver*) = 0; | 328 virtual void RegisterPopupOpeningObserver(PopupOpeningObserver*) = 0; |
| 329 virtual void UnregisterPopupOpeningObserver(PopupOpeningObserver*) = 0; | 329 virtual void UnregisterPopupOpeningObserver(PopupOpeningObserver*) = 0; |
| 330 virtual void NotifyPopupOpeningObservers() const = 0; |
| 330 | 331 |
| 331 virtual CompositorWorkerProxyClient* CreateCompositorWorkerProxyClient( | 332 virtual CompositorWorkerProxyClient* CreateCompositorWorkerProxyClient( |
| 332 LocalFrame*) = 0; | 333 LocalFrame*) = 0; |
| 333 virtual AnimationWorkletProxyClient* CreateAnimationWorkletProxyClient( | 334 virtual AnimationWorkletProxyClient* CreateAnimationWorkletProxyClient( |
| 334 LocalFrame*) = 0; | 335 LocalFrame*) = 0; |
| 335 | 336 |
| 336 virtual FloatSize ElasticOverscroll() const { return FloatSize(); } | 337 virtual FloatSize ElasticOverscroll() const { return FloatSize(); } |
| 337 | 338 |
| 338 // Called when observed XHR, fetch, and other fetch request with non-GET | 339 // Called when observed XHR, fetch, and other fetch request with non-GET |
| 339 // method is initiated from javascript. At this time, it is not guaranteed | 340 // method is initiated from javascript. At this time, it is not guaranteed |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 WeakMember<Node> last_mouse_over_node_; | 378 WeakMember<Node> last_mouse_over_node_; |
| 378 LayoutPoint last_tool_tip_point_; | 379 LayoutPoint last_tool_tip_point_; |
| 379 String last_tool_tip_text_; | 380 String last_tool_tip_text_; |
| 380 | 381 |
| 381 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 382 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 382 }; | 383 }; |
| 383 | 384 |
| 384 } // namespace blink | 385 } // namespace blink |
| 385 | 386 |
| 386 #endif // ChromeClient_h | 387 #endif // ChromeClient_h |
| OLD | NEW |