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

Side by Side Diff: Source/core/page/EventHandler.cpp

Issue 409113003: Revert of [oilpan]: Remove support for tracing off-heap hashmaps. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | « Source/core/html/forms/FormController.cpp ('k') | Source/core/page/PrintContext.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 (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed.
3 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) 3 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org)
4 * Copyright (C) 2012 Digia Plc. and/or its subsidiary(-ies) 4 * Copyright (C) 2012 Digia Plc. and/or its subsidiary(-ies)
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 { 230 {
231 } 231 }
232 232
233 EventHandler::~EventHandler() 233 EventHandler::~EventHandler()
234 { 234 {
235 ASSERT(!m_fakeMouseMoveEventTimer.isActive()); 235 ASSERT(!m_fakeMouseMoveEventTimer.isActive());
236 } 236 }
237 237
238 void EventHandler::trace(Visitor* visitor) 238 void EventHandler::trace(Visitor* visitor)
239 { 239 {
240 #if ENABLE(OILPAN)
241 visitor->trace(m_mousePressNode); 240 visitor->trace(m_mousePressNode);
242 visitor->trace(m_capturingMouseEventsNode); 241 visitor->trace(m_capturingMouseEventsNode);
243 visitor->trace(m_nodeUnderMouse); 242 visitor->trace(m_nodeUnderMouse);
244 visitor->trace(m_lastNodeUnderMouse); 243 visitor->trace(m_lastNodeUnderMouse);
245 visitor->trace(m_clickNode); 244 visitor->trace(m_clickNode);
246 visitor->trace(m_dragTarget); 245 visitor->trace(m_dragTarget);
247 visitor->trace(m_frameSetBeingResized); 246 visitor->trace(m_frameSetBeingResized);
248 visitor->trace(m_latchedWheelEventNode); 247 visitor->trace(m_latchedWheelEventNode);
249 visitor->trace(m_previousWheelScrolledNode); 248 visitor->trace(m_previousWheelScrolledNode);
250 visitor->trace(m_targetForTouchID); 249 visitor->trace(m_targetForTouchID);
251 visitor->trace(m_touchSequenceDocument); 250 visitor->trace(m_touchSequenceDocument);
252 visitor->trace(m_scrollGestureHandlingNode); 251 visitor->trace(m_scrollGestureHandlingNode);
253 visitor->trace(m_previousGestureScrolledNode); 252 visitor->trace(m_previousGestureScrolledNode);
254 visitor->trace(m_lastDeferredTapElement); 253 visitor->trace(m_lastDeferredTapElement);
255 #endif
256 } 254 }
257 255
258 DragState& EventHandler::dragState() 256 DragState& EventHandler::dragState()
259 { 257 {
260 DEFINE_STATIC_LOCAL(OwnPtrWillBePersistent<DragState>, state, (adoptPtrWillB eNoop(new DragState()))); 258 DEFINE_STATIC_LOCAL(OwnPtrWillBePersistent<DragState>, state, (adoptPtrWillB eNoop(new DragState())));
261 return *state; 259 return *state;
262 } 260 }
263 261
264 void EventHandler::clear() 262 void EventHandler::clear()
265 { 263 {
(...skipping 3556 matching lines...) Expand 10 before | Expand all | Expand 10 after
3822 unsigned EventHandler::accessKeyModifiers() 3820 unsigned EventHandler::accessKeyModifiers()
3823 { 3821 {
3824 #if OS(MACOSX) 3822 #if OS(MACOSX)
3825 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; 3823 return PlatformEvent::CtrlKey | PlatformEvent::AltKey;
3826 #else 3824 #else
3827 return PlatformEvent::AltKey; 3825 return PlatformEvent::AltKey;
3828 #endif 3826 #endif
3829 } 3827 }
3830 3828
3831 } // namespace blink 3829 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/html/forms/FormController.cpp ('k') | Source/core/page/PrintContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698