| OLD | NEW |
| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 bool Event::isGestureEvent() const | 161 bool Event::isGestureEvent() const |
| 162 { | 162 { |
| 163 return false; | 163 return false; |
| 164 } | 164 } |
| 165 | 165 |
| 166 bool Event::isWheelEvent() const | 166 bool Event::isWheelEvent() const |
| 167 { | 167 { |
| 168 return false; | 168 return false; |
| 169 } | 169 } |
| 170 | 170 |
| 171 bool Event::isRelatedEvent() const | |
| 172 { | |
| 173 return false; | |
| 174 } | |
| 175 | |
| 176 bool Event::isDragEvent() const | 171 bool Event::isDragEvent() const |
| 177 { | 172 { |
| 178 return false; | 173 return false; |
| 179 } | 174 } |
| 180 | 175 |
| 181 bool Event::isClipboardEvent() const | 176 bool Event::isClipboardEvent() const |
| 182 { | 177 { |
| 183 return false; | 178 return false; |
| 184 } | 179 } |
| 185 | 180 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 | 244 |
| 250 void Event::trace(Visitor* visitor) | 245 void Event::trace(Visitor* visitor) |
| 251 { | 246 { |
| 252 visitor->trace(m_currentTarget); | 247 visitor->trace(m_currentTarget); |
| 253 visitor->trace(m_target); | 248 visitor->trace(m_target); |
| 254 visitor->trace(m_underlyingEvent); | 249 visitor->trace(m_underlyingEvent); |
| 255 visitor->trace(m_eventPath); | 250 visitor->trace(m_eventPath); |
| 256 } | 251 } |
| 257 | 252 |
| 258 } // namespace blink | 253 } // namespace blink |
| OLD | NEW |