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

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

Issue 169323002: Oilpan: Move core/clipboard/ to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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
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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 , m_activeIntervalTimer(this, &EventHandler::activeIntervalTimerFired) 299 , m_activeIntervalTimer(this, &EventHandler::activeIntervalTimerFired)
300 , m_lastShowPressTimestamp(0) 300 , m_lastShowPressTimestamp(0)
301 { 301 {
302 } 302 }
303 303
304 EventHandler::~EventHandler() 304 EventHandler::~EventHandler()
305 { 305 {
306 ASSERT(!m_fakeMouseMoveEventTimer.isActive()); 306 ASSERT(!m_fakeMouseMoveEventTimer.isActive());
307 } 307 }
308 308
309 DEFINE_GC_INFO(DragState);
310
309 DragState& EventHandler::dragState() 311 DragState& EventHandler::dragState()
310 { 312 {
311 DEFINE_STATIC_LOCAL(DragState, state, ()); 313 DEFINE_STATIC_LOCAL(Persistent<DragState>, state, (new DragState()));
haraken 2014/02/19 12:05:42 This was a bug. I had to add 'new DragState()'.
312 return state; 314 return *state;
313 } 315 }
314 316
315 void EventHandler::clear() 317 void EventHandler::clear()
316 { 318 {
317 m_hoverTimer.stop(); 319 m_hoverTimer.stop();
318 m_cursorUpdateTimer.stop(); 320 m_cursorUpdateTimer.stop();
319 m_fakeMouseMoveEventTimer.stop(); 321 m_fakeMouseMoveEventTimer.stop();
320 m_activeIntervalTimer.stop(); 322 m_activeIntervalTimer.stop();
321 m_resizeScrollableArea = 0; 323 m_resizeScrollableArea = 0;
322 m_nodeUnderMouse = 0; 324 m_nodeUnderMouse = 0;
(...skipping 3665 matching lines...) Expand 10 before | Expand all | Expand 10 after
3988 } 3990 }
3989 3991
3990 bool EventHandler::passWidgetMouseDownEventToWidget(const MouseEventWithHitTestR esults& event) 3992 bool EventHandler::passWidgetMouseDownEventToWidget(const MouseEventWithHitTestR esults& event)
3991 { 3993 {
3992 // Figure out which view to send the event to. 3994 // Figure out which view to send the event to.
3993 if (!event.targetNode() || !event.targetNode()->renderer() || !event.targetN ode()->renderer()->isWidget()) 3995 if (!event.targetNode() || !event.targetNode()->renderer() || !event.targetN ode()->renderer()->isWidget())
3994 return false; 3996 return false;
3995 return false; 3997 return false;
3996 } 3998 }
3997 3999
3998 PassRefPtr<Clipboard> EventHandler::createDraggingClipboard() const 4000 PassRefPtrWillBeRawPtr<Clipboard> EventHandler::createDraggingClipboard() const
3999 { 4001 {
4000 return Clipboard::create(Clipboard::DragAndDrop, ClipboardWritable, DataObje ct::create()); 4002 return Clipboard::create(Clipboard::DragAndDrop, ClipboardWritable, DataObje ct::create());
4001 } 4003 }
4002 4004
4003 void EventHandler::focusDocumentView() 4005 void EventHandler::focusDocumentView()
4004 { 4006 {
4005 Page* page = m_frame->page(); 4007 Page* page = m_frame->page();
4006 if (!page) 4008 if (!page)
4007 return; 4009 return;
4008 page->focusController().setFocusedFrame(m_frame); 4010 page->focusController().setFocusedFrame(m_frame);
4009 } 4011 }
4010 4012
4011 unsigned EventHandler::accessKeyModifiers() 4013 unsigned EventHandler::accessKeyModifiers()
4012 { 4014 {
4013 #if OS(MACOSX) 4015 #if OS(MACOSX)
4014 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; 4016 return PlatformEvent::CtrlKey | PlatformEvent::AltKey;
4015 #else 4017 #else
4016 return PlatformEvent::AltKey; 4018 return PlatformEvent::AltKey;
4017 #endif 4019 #endif
4018 } 4020 }
4019 4021
4020 } // namespace WebCore 4022 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698