| 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-2011, 2014 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights 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 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 bool dispatchMouseEvent(const PlatformMouseEvent&, const AtomicString& event
Type, int clickCount = 0, Node* relatedTarget = 0); | 624 bool dispatchMouseEvent(const PlatformMouseEvent&, const AtomicString& event
Type, int clickCount = 0, Node* relatedTarget = 0); |
| 625 bool dispatchGestureEvent(const PlatformGestureEvent&); | 625 bool dispatchGestureEvent(const PlatformGestureEvent&); |
| 626 bool dispatchTouchEvent(PassRefPtrWillBeRawPtr<TouchEvent>); | 626 bool dispatchTouchEvent(PassRefPtrWillBeRawPtr<TouchEvent>); |
| 627 | 627 |
| 628 void dispatchSimulatedClick(Event* underlyingEvent, SimulatedClickMouseEvent
Options = SendNoEvents); | 628 void dispatchSimulatedClick(Event* underlyingEvent, SimulatedClickMouseEvent
Options = SendNoEvents); |
| 629 | 629 |
| 630 void dispatchInputEvent(); | 630 void dispatchInputEvent(); |
| 631 | 631 |
| 632 // Perform the default action for an event. | 632 // Perform the default action for an event. |
| 633 virtual void defaultEventHandler(Event*); | 633 virtual void defaultEventHandler(Event*); |
| 634 virtual void willCallDefaultEventHandler(const Event&); | |
| 635 | 634 |
| 636 virtual EventTargetData* eventTargetData() OVERRIDE; | 635 virtual EventTargetData* eventTargetData() OVERRIDE; |
| 637 virtual EventTargetData& ensureEventTargetData() OVERRIDE; | 636 virtual EventTargetData& ensureEventTargetData() OVERRIDE; |
| 638 | 637 |
| 639 void getRegisteredMutationObserversOfType(WillBeHeapHashMap<RawPtrWillBeMemb
er<MutationObserver>, MutationRecordDeliveryOptions>&, MutationObserver::Mutatio
nType, const QualifiedName* attributeName); | 638 void getRegisteredMutationObserversOfType(WillBeHeapHashMap<RawPtrWillBeMemb
er<MutationObserver>, MutationRecordDeliveryOptions>&, MutationObserver::Mutatio
nType, const QualifiedName* attributeName); |
| 640 void registerMutationObserver(MutationObserver&, MutationObserverOptions, co
nst HashSet<AtomicString>& attributeFilter); | 639 void registerMutationObserver(MutationObserver&, MutationObserverOptions, co
nst HashSet<AtomicString>& attributeFilter); |
| 641 void unregisterMutationObserver(MutationObserverRegistration*); | 640 void unregisterMutationObserver(MutationObserverRegistration*); |
| 642 void registerTransientMutationObserver(MutationObserverRegistration*); | 641 void registerTransientMutationObserver(MutationObserverRegistration*); |
| 643 void unregisterTransientMutationObserver(MutationObserverRegistration*); | 642 void unregisterTransientMutationObserver(MutationObserverRegistration*); |
| 644 void notifyMutationObserversNodeWillDetach(); | 643 void notifyMutationObserversNodeWillDetach(); |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 884 } // namespace blink | 883 } // namespace blink |
| 885 | 884 |
| 886 #ifndef NDEBUG | 885 #ifndef NDEBUG |
| 887 // Outside the WebCore namespace for ease of invocation from gdb. | 886 // Outside the WebCore namespace for ease of invocation from gdb. |
| 888 void showNode(const blink::Node*); | 887 void showNode(const blink::Node*); |
| 889 void showTree(const blink::Node*); | 888 void showTree(const blink::Node*); |
| 890 void showNodePath(const blink::Node*); | 889 void showNodePath(const blink::Node*); |
| 891 #endif | 890 #endif |
| 892 | 891 |
| 893 #endif | 892 #endif |
| OLD | NEW |