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