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

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: Rebase 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 bool Event::isRelatedEvent() const 178 bool Event::isRelatedEvent() const
179 { 179 {
180 return false; 180 return false;
181 } 181 }
182 182
183 bool Event::isPointerEvent() const 183 bool Event::isPointerEvent() const
184 { 184 {
185 return false; 185 return false;
186 } 186 }
187 187
188 bool Event::isInputEvent() const
189 {
190 return false;
191 }
192
188 bool Event::isDragEvent() const 193 bool Event::isDragEvent() const
189 { 194 {
190 return false; 195 return false;
191 } 196 }
192 197
193 bool Event::isClipboardEvent() const 198 bool Event::isClipboardEvent() const
194 { 199 {
195 return false; 200 return false;
196 } 201 }
197 202
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 327
323 DEFINE_TRACE(Event) 328 DEFINE_TRACE(Event)
324 { 329 {
325 visitor->trace(m_currentTarget); 330 visitor->trace(m_currentTarget);
326 visitor->trace(m_target); 331 visitor->trace(m_target);
327 visitor->trace(m_underlyingEvent); 332 visitor->trace(m_underlyingEvent);
328 visitor->trace(m_eventPath); 333 visitor->trace(m_eventPath);
329 } 334 }
330 335
331 } // namespace blink 336 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/events/Event.h ('k') | third_party/WebKit/Source/core/events/InputEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698