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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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* fromElement, |
255 Element* toElement) {} | 255 Element* toElement) {} |
256 | 256 |
257 virtual void clearCompositedSelection(LocalFrame*) {} | 257 virtual void clearCompositedSelection(LocalFrame*) {} |
258 virtual void updateCompositedSelection(LocalFrame*, | 258 virtual void updateCompositedSelection(LocalFrame*, |
259 const CompositedSelection&) {} | 259 const CompositedSelection&) {} |
260 | 260 |
261 virtual void setEventListenerProperties(WebEventListenerClass, | 261 virtual void setEventListenerProperties(LocalFrame*, |
| 262 WebEventListenerClass, |
262 WebEventListenerProperties) = 0; | 263 WebEventListenerProperties) = 0; |
263 virtual WebEventListenerProperties eventListenerProperties( | 264 virtual WebEventListenerProperties eventListenerProperties( |
| 265 LocalFrame*, |
264 WebEventListenerClass) const = 0; | 266 WebEventListenerClass) const = 0; |
265 virtual void setHasScrollEventHandlers(bool) = 0; | 267 virtual void updateTouchRectsForSubframeIfNecessary(LocalFrame*) = 0; |
266 virtual bool hasScrollEventHandlers() const = 0; | 268 virtual void setHasScrollEventHandlers(LocalFrame*, bool) = 0; |
267 | 269 |
268 virtual void setTouchAction(LocalFrame*, TouchAction) = 0; | 270 virtual void setTouchAction(LocalFrame*, TouchAction) = 0; |
269 | 271 |
270 // Checks if there is an opened popup, called by LayoutMenuList::showPopup(). | 272 // Checks if there is an opened popup, called by LayoutMenuList::showPopup(). |
271 virtual bool hasOpenedPopup() const = 0; | 273 virtual bool hasOpenedPopup() const = 0; |
272 virtual PopupMenu* openPopupMenu(LocalFrame&, HTMLSelectElement&) = 0; | 274 virtual PopupMenu* openPopupMenu(LocalFrame&, HTMLSelectElement&) = 0; |
273 virtual DOMWindow* pagePopupWindowForTesting() const = 0; | 275 virtual DOMWindow* pagePopupWindowForTesting() const = 0; |
274 | 276 |
275 virtual void postAccessibilityNotification(AXObject*, | 277 virtual void postAccessibilityNotification(AXObject*, |
276 AXObjectCache::AXNotification) {} | 278 AXObjectCache::AXNotification) {} |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 WeakMember<Node> m_lastMouseOverNode; | 370 WeakMember<Node> m_lastMouseOverNode; |
369 LayoutPoint m_lastToolTipPoint; | 371 LayoutPoint m_lastToolTipPoint; |
370 String m_lastToolTipText; | 372 String m_lastToolTipText; |
371 | 373 |
372 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 374 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
373 }; | 375 }; |
374 | 376 |
375 } // namespace blink | 377 } // namespace blink |
376 | 378 |
377 #endif // ChromeClient_h | 379 #endif // ChromeClient_h |
OLD | NEW |