| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
| 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 | 644 |
| 645 bool dispatchKeyEvent(const PlatformKeyboardEvent&); | 645 bool dispatchKeyEvent(const PlatformKeyboardEvent&); |
| 646 bool dispatchWheelEvent(const PlatformWheelEvent&); | 646 bool dispatchWheelEvent(const PlatformWheelEvent&); |
| 647 bool dispatchMouseEvent(const PlatformMouseEvent&, const AtomicString& event
Type, int clickCount = 0, Node* relatedTarget = 0); | 647 bool dispatchMouseEvent(const PlatformMouseEvent&, const AtomicString& event
Type, int clickCount = 0, Node* relatedTarget = 0); |
| 648 bool dispatchGestureEvent(const PlatformGestureEvent&); | 648 bool dispatchGestureEvent(const PlatformGestureEvent&); |
| 649 bool dispatchTouchEvent(PassRefPtr<TouchEvent>); | 649 bool dispatchTouchEvent(PassRefPtr<TouchEvent>); |
| 650 | 650 |
| 651 void dispatchSimulatedClick(Event* underlyingEvent, SimulatedClickMouseEvent
Options = SendNoEvents); | 651 void dispatchSimulatedClick(Event* underlyingEvent, SimulatedClickMouseEvent
Options = SendNoEvents); |
| 652 | 652 |
| 653 virtual bool dispatchBeforeLoadEvent(const String& sourceURL); | 653 virtual bool dispatchBeforeLoadEvent(const String& sourceURL); |
| 654 virtual void dispatchChangeEvent(); | 654 void dispatchInputEvent(); |
| 655 virtual void dispatchInputEvent(); | |
| 656 | 655 |
| 657 // Perform the default action for an event. | 656 // Perform the default action for an event. |
| 658 virtual void defaultEventHandler(Event*); | 657 virtual void defaultEventHandler(Event*); |
| 659 virtual void willCallDefaultEventHandler(const Event&); | 658 virtual void willCallDefaultEventHandler(const Event&); |
| 660 | 659 |
| 661 virtual EventTargetData* eventTargetData() OVERRIDE; | 660 virtual EventTargetData* eventTargetData() OVERRIDE; |
| 662 virtual EventTargetData& ensureEventTargetData() OVERRIDE; | 661 virtual EventTargetData& ensureEventTargetData() OVERRIDE; |
| 663 | 662 |
| 664 void getRegisteredMutationObserversOfType(HashMap<MutationObserver*, Mutatio
nRecordDeliveryOptions>&, MutationObserver::MutationType, const QualifiedName* a
ttributeName); | 663 void getRegisteredMutationObserversOfType(HashMap<MutationObserver*, Mutatio
nRecordDeliveryOptions>&, MutationObserver::MutationType, const QualifiedName* a
ttributeName); |
| 665 void registerMutationObserver(MutationObserver*, MutationObserverOptions, co
nst HashSet<AtomicString>& attributeFilter); | 664 void registerMutationObserver(MutationObserver*, MutationObserverOptions, co
nst HashSet<AtomicString>& attributeFilter); |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 | 912 |
| 914 } // namespace WebCore | 913 } // namespace WebCore |
| 915 | 914 |
| 916 #ifndef NDEBUG | 915 #ifndef NDEBUG |
| 917 // Outside the WebCore namespace for ease of invocation from gdb. | 916 // Outside the WebCore namespace for ease of invocation from gdb. |
| 918 void showTree(const WebCore::Node*); | 917 void showTree(const WebCore::Node*); |
| 919 void showNodePath(const WebCore::Node*); | 918 void showNodePath(const WebCore::Node*); |
| 920 #endif | 919 #endif |
| 921 | 920 |
| 922 #endif | 921 #endif |
| OLD | NEW |