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

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

Issue 603193005: Move the Widget hierarchy to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Switch LocalFrame::m_pluginElements rep to HashSet<HTMLPlugInElement*> 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 bool m_svgPan; 348 bool m_svgPan;
349 349
350 RenderLayerScrollableArea* m_resizeScrollableArea; 350 RenderLayerScrollableArea* m_resizeScrollableArea;
351 351
352 RefPtrWillBeMember<Node> m_capturingMouseEventsNode; 352 RefPtrWillBeMember<Node> m_capturingMouseEventsNode;
353 bool m_eventHandlerWillResetCapturingMouseEventsNode; 353 bool m_eventHandlerWillResetCapturingMouseEventsNode;
354 354
355 RefPtrWillBeMember<Node> m_nodeUnderMouse; 355 RefPtrWillBeMember<Node> m_nodeUnderMouse;
356 RefPtrWillBeMember<Node> m_lastNodeUnderMouse; 356 RefPtrWillBeMember<Node> m_lastNodeUnderMouse;
357 RefPtrWillBeMember<LocalFrame> m_lastMouseMoveEventSubframe; 357 RefPtrWillBeMember<LocalFrame> m_lastMouseMoveEventSubframe;
358 RefPtr<Scrollbar> m_lastScrollbarUnderMouse; 358 RefPtrWillBeMember<Scrollbar> m_lastScrollbarUnderMouse;
359 Cursor m_currentMouseCursor; 359 Cursor m_currentMouseCursor;
360 360
361 int m_clickCount; 361 int m_clickCount;
362 RefPtrWillBeMember<Node> m_clickNode; 362 RefPtrWillBeMember<Node> m_clickNode;
363 363
364 RefPtrWillBeMember<Node> m_dragTarget; 364 RefPtrWillBeMember<Node> m_dragTarget;
365 bool m_shouldOnlyFireDragOverEvent; 365 bool m_shouldOnlyFireDragOverEvent;
366 366
367 RefPtrWillBeMember<HTMLFrameSetElement> m_frameSetBeingResized; 367 RefPtrWillBeMember<HTMLFrameSetElement> m_frameSetBeingResized;
368 368
(...skipping 18 matching lines...) Expand all
387 387
388 // If set, the document of the active touch sequence. Unset if no touch sequ ence active. 388 // If set, the document of the active touch sequence. Unset if no touch sequ ence active.
389 RefPtrWillBeMember<Document> m_touchSequenceDocument; 389 RefPtrWillBeMember<Document> m_touchSequenceDocument;
390 RefPtr<UserGestureToken> m_touchSequenceUserGestureToken; 390 RefPtr<UserGestureToken> m_touchSequenceUserGestureToken;
391 391
392 bool m_touchPressed; 392 bool m_touchPressed;
393 393
394 RefPtrWillBeMember<Node> m_scrollGestureHandlingNode; 394 RefPtrWillBeMember<Node> m_scrollGestureHandlingNode;
395 bool m_lastGestureScrollOverWidget; 395 bool m_lastGestureScrollOverWidget;
396 RefPtrWillBeMember<Node> m_previousGestureScrolledNode; 396 RefPtrWillBeMember<Node> m_previousGestureScrolledNode;
397 RefPtr<Scrollbar> m_scrollbarHandlingScrollGesture; 397 RefPtrWillBeMember<Scrollbar> m_scrollbarHandlingScrollGesture;
398 398
399 double m_maxMouseMovedDuration; 399 double m_maxMouseMovedDuration;
400 bool m_didStartDrag; 400 bool m_didStartDrag;
401 401
402 bool m_longTapShouldInvokeContextMenu; 402 bool m_longTapShouldInvokeContextMenu;
403 403
404 Timer<EventHandler> m_activeIntervalTimer; 404 Timer<EventHandler> m_activeIntervalTimer;
405 double m_lastShowPressTimestamp; 405 double m_lastShowPressTimestamp;
406 RefPtrWillBeMember<Element> m_lastDeferredTapElement; 406 RefPtrWillBeMember<Element> m_lastDeferredTapElement;
407 }; 407 };
408 408
409 } // namespace blink 409 } // namespace blink
410 410
411 #endif // EventHandler_h 411 #endif // EventHandler_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698