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

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

Issue 205523003: Remove beforeload events. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove more tests Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/Node.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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, 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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 bool dispatchDOMActivateEvent(int detail, PassRefPtr<Event> underlyingEvent) ; 628 bool dispatchDOMActivateEvent(int detail, PassRefPtr<Event> underlyingEvent) ;
629 629
630 bool dispatchKeyEvent(const PlatformKeyboardEvent&); 630 bool dispatchKeyEvent(const PlatformKeyboardEvent&);
631 bool dispatchWheelEvent(const PlatformWheelEvent&); 631 bool dispatchWheelEvent(const PlatformWheelEvent&);
632 bool dispatchMouseEvent(const PlatformMouseEvent&, const AtomicString& event Type, int clickCount = 0, Node* relatedTarget = 0); 632 bool dispatchMouseEvent(const PlatformMouseEvent&, const AtomicString& event Type, int clickCount = 0, Node* relatedTarget = 0);
633 bool dispatchGestureEvent(const PlatformGestureEvent&); 633 bool dispatchGestureEvent(const PlatformGestureEvent&);
634 bool dispatchTouchEvent(PassRefPtr<TouchEvent>); 634 bool dispatchTouchEvent(PassRefPtr<TouchEvent>);
635 635
636 void dispatchSimulatedClick(Event* underlyingEvent, SimulatedClickMouseEvent Options = SendNoEvents); 636 void dispatchSimulatedClick(Event* underlyingEvent, SimulatedClickMouseEvent Options = SendNoEvents);
637 637
638 virtual bool dispatchBeforeLoadEvent(const String& sourceURL);
639 void dispatchInputEvent(); 638 void dispatchInputEvent();
640 639
641 // Perform the default action for an event. 640 // Perform the default action for an event.
642 virtual void defaultEventHandler(Event*); 641 virtual void defaultEventHandler(Event*);
643 virtual void willCallDefaultEventHandler(const Event&); 642 virtual void willCallDefaultEventHandler(const Event&);
644 643
645 virtual EventTargetData* eventTargetData() OVERRIDE; 644 virtual EventTargetData* eventTargetData() OVERRIDE;
646 virtual EventTargetData& ensureEventTargetData() OVERRIDE; 645 virtual EventTargetData& ensureEventTargetData() OVERRIDE;
647 646
648 void getRegisteredMutationObserversOfType(HashMap<MutationObserver*, Mutatio nRecordDeliveryOptions>&, MutationObserver::MutationType, const QualifiedName* a ttributeName); 647 void getRegisteredMutationObserversOfType(HashMap<MutationObserver*, Mutatio nRecordDeliveryOptions>&, MutationObserver::MutationType, const QualifiedName* a ttributeName);
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 } // namespace WebCore 902 } // namespace WebCore
904 903
905 #ifndef NDEBUG 904 #ifndef NDEBUG
906 // Outside the WebCore namespace for ease of invocation from gdb. 905 // Outside the WebCore namespace for ease of invocation from gdb.
907 void showNode(const WebCore::Node*); 906 void showNode(const WebCore::Node*);
908 void showTree(const WebCore::Node*); 907 void showTree(const WebCore::Node*);
909 void showNodePath(const WebCore::Node*); 908 void showNodePath(const WebCore::Node*);
910 #endif 909 #endif
911 910
912 #endif 911 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698