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