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

Side by Side Diff: third_party/WebKit/Source/core/events/Event.cpp

Issue 1682683002: [InputEvent] Add InputEvent with basic interface behind a flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing layout test Created 4 years, 10 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) 2001 Peter Kelly (pmk@post.com) 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com)
3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de)
4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
5 * Copyright (C) 2003, 2005, 2006, 2008 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2008 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 bool Event::isRelatedEvent() const 177 bool Event::isRelatedEvent() const
178 { 178 {
179 return false; 179 return false;
180 } 180 }
181 181
182 bool Event::isPointerEvent() const 182 bool Event::isPointerEvent() const
183 { 183 {
184 return false; 184 return false;
185 } 185 }
186 186
187 bool Event::isInputEvent() const
188 {
189 return false;
190 }
191
187 bool Event::isDragEvent() const 192 bool Event::isDragEvent() const
188 { 193 {
189 return false; 194 return false;
190 } 195 }
191 196
192 bool Event::isClipboardEvent() const 197 bool Event::isClipboardEvent() const
193 { 198 {
194 return false; 199 return false;
195 } 200 }
196 201
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 326
322 DEFINE_TRACE(Event) 327 DEFINE_TRACE(Event)
323 { 328 {
324 visitor->trace(m_currentTarget); 329 visitor->trace(m_currentTarget);
325 visitor->trace(m_target); 330 visitor->trace(m_target);
326 visitor->trace(m_underlyingEvent); 331 visitor->trace(m_underlyingEvent);
327 visitor->trace(m_eventPath); 332 visitor->trace(m_eventPath);
328 } 333 }
329 334
330 } // namespace blink 335 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698