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

Side by Side Diff: Source/core/events/TouchEvent.h

Issue 247483002: Allow touch events to be uncancelable (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix build on some platforms Created 6 years, 8 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 | « no previous file | Source/core/events/TouchEvent.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 2008, The Android Open Source Project 2 * Copyright 2008, The Android Open Source Project
3 * Copyright (C) 2012 Research In Motion Limited. All rights reserved. 3 * Copyright (C) 2012 Research In Motion Limited. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright 10 * * Redistributions in binary form must reproduce the above copyright
(...skipping 27 matching lines...) Expand all
38 virtual ~TouchEvent(); 38 virtual ~TouchEvent();
39 39
40 static PassRefPtrWillBeRawPtr<TouchEvent> create() 40 static PassRefPtrWillBeRawPtr<TouchEvent> create()
41 { 41 {
42 return adoptRefWillBeNoop(new TouchEvent); 42 return adoptRefWillBeNoop(new TouchEvent);
43 } 43 }
44 static PassRefPtrWillBeRawPtr<TouchEvent> create(TouchList* touches, 44 static PassRefPtrWillBeRawPtr<TouchEvent> create(TouchList* touches,
45 TouchList* targetTouches, TouchList* changedTouches, 45 TouchList* targetTouches, TouchList* changedTouches,
46 const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, 46 const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view,
47 int screenX, int screenY, int pageX, int pageY, 47 int screenX, int screenY, int pageX, int pageY,
48 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) 48 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable)
49 { 49 {
50 return adoptRefWillBeNoop(new TouchEvent(touches, targetTouches, changed Touches, 50 return adoptRefWillBeNoop(new TouchEvent(touches, targetTouches, changed Touches,
51 type, view, screenX, screenY, pageX, pageY, 51 type, view, screenX, screenY, pageX, pageY,
52 ctrlKey, altKey, shiftKey, metaKey)); 52 ctrlKey, altKey, shiftKey, metaKey, cancelable));
53 } 53 }
54 54
55 void initTouchEvent(TouchList* touches, TouchList* targetTouches, 55 void initTouchEvent(TouchList* touches, TouchList* targetTouches,
56 TouchList* changedTouches, const AtomicString& type, 56 TouchList* changedTouches, const AtomicString& type,
57 PassRefPtrWillBeRawPtr<AbstractView>, int screenX, int screenY, 57 PassRefPtrWillBeRawPtr<AbstractView>, int screenX, int screenY,
58 int clientX, int clientY, 58 int clientX, int clientY,
59 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); 59 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
60 60
61 TouchList* touches() const { return m_touches.get(); } 61 TouchList* touches() const { return m_touches.get(); }
62 TouchList* targetTouches() const { return m_targetTouches.get(); } 62 TouchList* targetTouches() const { return m_targetTouches.get(); }
63 TouchList* changedTouches() const { return m_changedTouches.get(); } 63 TouchList* changedTouches() const { return m_changedTouches.get(); }
64 64
65 void setTouches(PassRefPtrWillBeRawPtr<TouchList> touches) { m_touches = tou ches; } 65 void setTouches(PassRefPtrWillBeRawPtr<TouchList> touches) { m_touches = tou ches; }
66 void setTargetTouches(PassRefPtrWillBeRawPtr<TouchList> targetTouches) { m_t argetTouches = targetTouches; } 66 void setTargetTouches(PassRefPtrWillBeRawPtr<TouchList> targetTouches) { m_t argetTouches = targetTouches; }
67 void setChangedTouches(PassRefPtrWillBeRawPtr<TouchList> changedTouches) { m _changedTouches = changedTouches; } 67 void setChangedTouches(PassRefPtrWillBeRawPtr<TouchList> changedTouches) { m _changedTouches = changedTouches; }
68 68
69 virtual bool isTouchEvent() const OVERRIDE; 69 virtual bool isTouchEvent() const OVERRIDE;
70 70
71 virtual const AtomicString& interfaceName() const OVERRIDE; 71 virtual const AtomicString& interfaceName() const OVERRIDE;
72 72
73 virtual void trace(Visitor*) OVERRIDE; 73 virtual void trace(Visitor*) OVERRIDE;
74 74
75 private: 75 private:
76 TouchEvent(); 76 TouchEvent();
77 TouchEvent(TouchList* touches, TouchList* targetTouches, 77 TouchEvent(TouchList* touches, TouchList* targetTouches,
78 TouchList* changedTouches, const AtomicString& type, 78 TouchList* changedTouches, const AtomicString& type,
79 PassRefPtrWillBeRawPtr<AbstractView>, int screenX, int screenY, int pageX, 79 PassRefPtrWillBeRawPtr<AbstractView>, int screenX, int screenY, int pageX,
80 int pageY, 80 int pageY,
81 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); 81 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancela ble);
82 82
83 RefPtrWillBeMember<TouchList> m_touches; 83 RefPtrWillBeMember<TouchList> m_touches;
84 RefPtrWillBeMember<TouchList> m_targetTouches; 84 RefPtrWillBeMember<TouchList> m_targetTouches;
85 RefPtrWillBeMember<TouchList> m_changedTouches; 85 RefPtrWillBeMember<TouchList> m_changedTouches;
86 }; 86 };
87 87
88 class TouchEventDispatchMediator FINAL : public EventDispatchMediator { 88 class TouchEventDispatchMediator FINAL : public EventDispatchMediator {
89 public: 89 public:
90 static PassRefPtr<TouchEventDispatchMediator> create(PassRefPtrWillBeRawPtr< TouchEvent>); 90 static PassRefPtr<TouchEventDispatchMediator> create(PassRefPtrWillBeRawPtr< TouchEvent>);
91 91
92 private: 92 private:
93 explicit TouchEventDispatchMediator(PassRefPtrWillBeRawPtr<TouchEvent>); 93 explicit TouchEventDispatchMediator(PassRefPtrWillBeRawPtr<TouchEvent>);
94 TouchEvent* event() const; 94 TouchEvent* event() const;
95 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE; 95 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE;
96 }; 96 };
97 97
98 DEFINE_EVENT_TYPE_CASTS(TouchEvent); 98 DEFINE_EVENT_TYPE_CASTS(TouchEvent);
99 99
100 } // namespace WebCore 100 } // namespace WebCore
101 101
102 #endif // TouchEvent_h 102 #endif // TouchEvent_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/events/TouchEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698