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

Side by Side Diff: sky/engine/core/events/Event.cpp

Issue 640143004: Remove context menus. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 | « sky/engine/core/events/Event.h ('k') | sky/engine/core/events/EventTypeNames.in » ('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) 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
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
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
OLDNEW
« no previous file with comments | « sky/engine/core/events/Event.h ('k') | sky/engine/core/events/EventTypeNames.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698