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

Side by Side Diff: sky/engine/core/dom/Node.h

Issue 874823002: Move GestureEvent to NewEventDispatcher (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Build fixes Created 5 years, 11 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
« no previous file with comments | « no previous file | sky/engine/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-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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 class ExceptionState; 53 class ExceptionState;
54 class FloatPoint; 54 class FloatPoint;
55 class LocalFrame; 55 class LocalFrame;
56 class HTMLQualifiedName; 56 class HTMLQualifiedName;
57 class IntRect; 57 class IntRect;
58 class KeyboardEvent; 58 class KeyboardEvent;
59 class NSResolver; 59 class NSResolver;
60 class NodeEventContext; 60 class NodeEventContext;
61 class NodeList; 61 class NodeList;
62 class NodeRareData; 62 class NodeRareData;
63 class PlatformGestureEvent;
64 class PlatformKeyboardEvent; 63 class PlatformKeyboardEvent;
65 class QualifiedName; 64 class QualifiedName;
66 class RegisteredEventListener; 65 class RegisteredEventListener;
67 class RenderBox; 66 class RenderBox;
68 class RenderBoxModelObject; 67 class RenderBoxModelObject;
69 class RenderObject; 68 class RenderObject;
70 class RenderStyle; 69 class RenderStyle;
71 class ShadowRoot; 70 class ShadowRoot;
72 template <typename NodeType> class StaticNodeTypeList; 71 template <typename NodeType> class StaticNodeTypeList;
73 typedef StaticNodeTypeList<Node> StaticNodeList; 72 typedef StaticNodeTypeList<Node> StaticNodeList;
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 virtual bool dispatchEvent(PassRefPtr<Event>) override; 462 virtual bool dispatchEvent(PassRefPtr<Event>) override;
464 463
465 void dispatchScopedEvent(PassRefPtr<Event>); 464 void dispatchScopedEvent(PassRefPtr<Event>);
466 void dispatchScopedEventDispatchMediator(PassRefPtr<EventDispatchMediator>); 465 void dispatchScopedEventDispatchMediator(PassRefPtr<EventDispatchMediator>);
467 466
468 virtual void handleLocalEvents(Event*); 467 virtual void handleLocalEvents(Event*);
469 468
470 bool dispatchDOMActivateEvent(int detail, PassRefPtr<Event> underlyingEvent) ; 469 bool dispatchDOMActivateEvent(int detail, PassRefPtr<Event> underlyingEvent) ;
471 470
472 bool dispatchKeyEvent(const PlatformKeyboardEvent&); 471 bool dispatchKeyEvent(const PlatformKeyboardEvent&);
473 bool dispatchGestureEvent(const PlatformGestureEvent&);
474 472
475 void dispatchInputEvent(); 473 void dispatchInputEvent();
476 474
477 // Perform the default action for an event. 475 // Perform the default action for an event.
478 virtual void defaultEventHandler(Event*); 476 virtual void defaultEventHandler(Event*);
479 477
480 virtual EventTargetData* eventTargetData() override; 478 virtual EventTargetData* eventTargetData() override;
481 virtual EventTargetData& ensureEventTargetData() override; 479 virtual EventTargetData& ensureEventTargetData() override;
482 480
483 void getRegisteredMutationObserversOfType(HashMap<RawPtr<MutationObserver>, MutationRecordDeliveryOptions>&, MutationObserver::MutationType, const Qualified Name* attributeName); 481 void getRegisteredMutationObserversOfType(HashMap<RawPtr<MutationObserver>, MutationRecordDeliveryOptions>&, MutationObserver::MutationType, const Qualified Name* attributeName);
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 } // namespace blink 691 } // namespace blink
694 692
695 #ifndef NDEBUG 693 #ifndef NDEBUG
696 // Outside the WebCore namespace for ease of invocation from gdb. 694 // Outside the WebCore namespace for ease of invocation from gdb.
697 void showNode(const blink::Node*); 695 void showNode(const blink::Node*);
698 void showTree(const blink::Node*); 696 void showTree(const blink::Node*);
699 void showNodePath(const blink::Node*); 697 void showNodePath(const blink::Node*);
700 #endif 698 #endif
701 699
702 #endif // SKY_ENGINE_CORE_DOM_NODE_H_ 700 #endif // SKY_ENGINE_CORE_DOM_NODE_H_
OLDNEW
« no previous file with comments | « no previous file | sky/engine/core/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698