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

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

Issue 641733004: Merge FrameView and ScrollView. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline. 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/page/AutoscrollController.cpp ('k') | Source/core/rendering/RenderBox.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 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 { 572 {
573 TRACE_EVENT0("blink", "EventHandler::handleMousePressEvent"); 573 TRACE_EVENT0("blink", "EventHandler::handleMousePressEvent");
574 574
575 // Reset drag state. 575 // Reset drag state.
576 dragState().m_dragSrc = nullptr; 576 dragState().m_dragSrc = nullptr;
577 577
578 cancelFakeMouseMoveEvent(); 578 cancelFakeMouseMoveEvent();
579 579
580 m_frame->document()->updateLayoutIgnorePendingStylesheets(); 580 m_frame->document()->updateLayoutIgnorePendingStylesheets();
581 581
582 if (ScrollView* scrollView = m_frame->view()) { 582 if (FrameView* scrollView = m_frame->view()) {
583 if (scrollView->isPointInScrollbarCorner(event.event().position())) 583 if (scrollView->isPointInScrollbarCorner(event.event().position()))
584 return false; 584 return false;
585 } 585 }
586 586
587 bool singleClick = event.event().clickCount() <= 1; 587 bool singleClick = event.event().clickCount() <= 1;
588 588
589 // If we got the event back, that must mean it wasn't prevented, 589 // If we got the event back, that must mean it wasn't prevented,
590 // so it's allowed to start a drag or selection if it wasn't in a scrollbar. 590 // so it's allowed to start a drag or selection if it wasn't in a scrollbar.
591 m_mouseDownMayStartSelect = canMouseDownStartSelect(event.innerNode()) && !e vent.scrollbar(); 591 m_mouseDownMayStartSelect = canMouseDownStartSelect(event.innerNode()) && !e vent.scrollbar();
592 592
(...skipping 3293 matching lines...) Expand 10 before | Expand all | Expand 10 after
3886 unsigned EventHandler::accessKeyModifiers() 3886 unsigned EventHandler::accessKeyModifiers()
3887 { 3887 {
3888 #if OS(MACOSX) 3888 #if OS(MACOSX)
3889 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; 3889 return PlatformEvent::CtrlKey | PlatformEvent::AltKey;
3890 #else 3890 #else
3891 return PlatformEvent::AltKey; 3891 return PlatformEvent::AltKey;
3892 #endif 3892 #endif
3893 } 3893 }
3894 3894
3895 } // namespace blink 3895 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/page/AutoscrollController.cpp ('k') | Source/core/rendering/RenderBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698