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

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

Issue 517043003: Move Frame to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Tidier assignment of Web*FrameImpl self-persistent refs Created 6 years, 3 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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 351
352 bool m_svgPan; 352 bool m_svgPan;
353 353
354 RenderLayerScrollableArea* m_resizeScrollableArea; 354 RenderLayerScrollableArea* m_resizeScrollableArea;
355 355
356 RefPtrWillBeMember<Node> m_capturingMouseEventsNode; 356 RefPtrWillBeMember<Node> m_capturingMouseEventsNode;
357 bool m_eventHandlerWillResetCapturingMouseEventsNode; 357 bool m_eventHandlerWillResetCapturingMouseEventsNode;
358 358
359 RefPtrWillBeMember<Node> m_nodeUnderMouse; 359 RefPtrWillBeMember<Node> m_nodeUnderMouse;
360 RefPtrWillBeMember<Node> m_lastNodeUnderMouse; 360 RefPtrWillBeMember<Node> m_lastNodeUnderMouse;
361 RefPtr<LocalFrame> m_lastMouseMoveEventSubframe; 361 RefPtrWillBeMember<LocalFrame> m_lastMouseMoveEventSubframe;
362 RefPtr<Scrollbar> m_lastScrollbarUnderMouse; 362 RefPtr<Scrollbar> m_lastScrollbarUnderMouse;
363 Cursor m_currentMouseCursor; 363 Cursor m_currentMouseCursor;
364 364
365 int m_clickCount; 365 int m_clickCount;
366 RefPtrWillBeMember<Node> m_clickNode; 366 RefPtrWillBeMember<Node> m_clickNode;
367 367
368 RefPtrWillBeMember<Node> m_dragTarget; 368 RefPtrWillBeMember<Node> m_dragTarget;
369 bool m_shouldOnlyFireDragOverEvent; 369 bool m_shouldOnlyFireDragOverEvent;
370 370
371 RefPtrWillBeMember<HTMLFrameSetElement> m_frameSetBeingResized; 371 RefPtrWillBeMember<HTMLFrameSetElement> m_frameSetBeingResized;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 bool m_longTapShouldInvokeContextMenu; 406 bool m_longTapShouldInvokeContextMenu;
407 407
408 Timer<EventHandler> m_activeIntervalTimer; 408 Timer<EventHandler> m_activeIntervalTimer;
409 double m_lastShowPressTimestamp; 409 double m_lastShowPressTimestamp;
410 RefPtrWillBeMember<Element> m_lastDeferredTapElement; 410 RefPtrWillBeMember<Element> m_lastDeferredTapElement;
411 }; 411 };
412 412
413 } // namespace blink 413 } // namespace blink
414 414
415 #endif // EventHandler_h 415 #endif // EventHandler_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698