FAE04190097596C9000540BE /* SVGImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = FAE0418E097596C9000540BE /* SVGImageLoader.h */; };
/* End PBXBuildFile section */
-/* Begin PBXBuildStyle section */
- BCCA09250ACCF95C00E0C915 /* Development */ = {
- isa = PBXBuildStyle;
- buildSettings = {
- COPY_PHASE_STRIP = NO;
- };
- name = Development;
- };
- BCCA09260ACCF95C00E0C915 /* Deployment */ = {
- isa = PBXBuildStyle;
- buildSettings = {
- COPY_PHASE_STRIP = YES;
- };
- name = Deployment;
- };
-/* End PBXBuildStyle section */
-
/* Begin PBXContainerItemProxy section */
DD041FF009D9E3250010AF2A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
0867D690FE84028FC02AAC07 /* Project object */ = {
isa = PBXProject;
buildConfigurationList = 149C284308902B11008A9EFC /* Build configuration list for PBXProject "WebCore" */;
- buildSettings = {
- };
- buildStyles = (
- BCCA09250ACCF95C00E0C915 /* Development */,
- BCCA09260ACCF95C00E0C915 /* Deployment */,
- );
hasScannedForEncodings = 1;
knownRegions = (
English,
#import "Logging.h"
#import "MouseEventWithHitTestResults.h"
#import "PlatformKeyboardEvent.h"
+#import "PlatformScrollBar.h"
#import "PlatformWheelEvent.h"
#import "Plugin.h"
#import "RegularExpression.h"
_mouseDownMayStartAutoscroll = d->m_mousePressNode && d->m_mousePressNode->renderer() && d->m_mousePressNode->renderer()->shouldAutoscroll();
- if (!passWidgetMouseDownEventToWidget(event, false)) {
+ if (!passWidgetMouseDownEventToWidget(event)) {
// We don't do this at the start of mouse down handling (before calling into WebCore),
// because we don't want to do it until we know we didn't hit a widget.
NSView *view = d->m_view->getDocumentView();
return Mac(m_frame.get())->passSubframeEventToSubframe(mev, subframe);
}
-bool FrameView::passMouseMoveEventToSubframe(MouseEventWithHitTestResults&, Frame*)
+bool FrameView::passMouseMoveEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
{
return Mac(m_frame.get())->passSubframeEventToSubframe(mev, subframe);
}
-bool FrameView::passMouseReleaseEventToSubframe(MouseEventWithHitTestResults&, Frame*)
+bool FrameView::passMouseReleaseEventToSubframe(MouseEventWithHitTestResults& mev, Frame* subframe)
{
return Mac(m_frame.get())->passSubframeEventToSubframe(mev, subframe);
}
-bool FrameView::passWheelEventToSubframe(PlatformWheelEvent&, Frame*)
+bool FrameView::passWheelEventToSubframe(PlatformWheelEvent&, Frame* subframe)
{
- return Mac(m_frame.get())->passWheelEventToWidget(subframe);
+ return Mac(m_frame.get())->passWheelEventToWidget(subframe->view());
}
}