Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Side by Side Diff: Source/core/dom/Node.h

Issue 455223002: Make anchors mouse-focusable (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698