diff options
Diffstat (limited to 'WebCore/page')
-rw-r--r-- | WebCore/page/EventHandler.cpp | 8 | ||||
-rw-r--r-- | WebCore/page/EventHandler.h | 8 | ||||
-rw-r--r-- | WebCore/page/Settings.cpp | 5 | ||||
-rw-r--r-- | WebCore/page/Settings.h | 5 |
4 files changed, 6 insertions, 20 deletions
diff --git a/WebCore/page/EventHandler.cpp b/WebCore/page/EventHandler.cpp index 4d7771d..89e9424 100644 --- a/WebCore/page/EventHandler.cpp +++ b/WebCore/page/EventHandler.cpp @@ -869,15 +869,11 @@ void EventHandler::allowDHTMLDrag(bool& flagDHTML, bool& flagUA) const } #endif // ENABLE(DRAG_SUPPORT) -<<<<<<< HEAD:WebCore/page/EventHandler.cpp #ifdef ANDROID_HITTEST_WITHSIZE -HitTestResult EventHandler::hitTestResultAtPoint(const IntPoint& point, bool allowShadowContent, bool ignoreClipping, HitTestScrollbars testScrollbars, const IntSize& pointPadding) +HitTestResult EventHandler::hitTestResultAtPoint(const IntPoint& point, bool allowShadowContent, bool ignoreClipping, HitTestScrollbars testScrollbars, int hitType, const IntSize& pointPadding) #else -HitTestResult EventHandler::hitTestResultAtPoint(const IntPoint& point, bool allowShadowContent, bool ignoreClipping, HitTestScrollbars testScrollbars) -#endif -======= HitTestResult EventHandler::hitTestResultAtPoint(const IntPoint& point, bool allowShadowContent, bool ignoreClipping, HitTestScrollbars testScrollbars, int hitType) ->>>>>>> webkit.org at r63859:WebCore/page/EventHandler.cpp +#endif { #ifdef ANDROID_HITTEST_WITHSIZE HitTestResult result(point, pointPadding); diff --git a/WebCore/page/EventHandler.h b/WebCore/page/EventHandler.h index 55c6b20..5348502 100644 --- a/WebCore/page/EventHandler.h +++ b/WebCore/page/EventHandler.h @@ -106,15 +106,11 @@ public: void dispatchFakeMouseMoveEventSoonInQuad(const FloatQuad&); -<<<<<<< HEAD:WebCore/page/EventHandler.h #ifdef ANDROID_HITTEST_WITHSIZE - HitTestResult hitTestResultAtPoint(const IntPoint&, bool allowShadowContent, bool ignoreClipping = false, HitTestScrollbars scrollbars = DontHitTestScrollbars, const IntSize& pointPadding = IntSize()); + HitTestResult hitTestResultAtPoint(const IntPoint&, bool allowShadowContent, bool ignoreClipping = false, HitTestScrollbars scrollbars = DontHitTestScrollbars, int hitType = HitTestRequest::ReadOnly | HitTestRequest::Active, const IntSize& pointPadding = IntSize()); #else - HitTestResult hitTestResultAtPoint(const IntPoint&, bool allowShadowContent, bool ignoreClipping = false, HitTestScrollbars scrollbars = DontHitTestScrollbars); -#endif -======= HitTestResult hitTestResultAtPoint(const IntPoint&, bool allowShadowContent, bool ignoreClipping = false, HitTestScrollbars scrollbars = DontHitTestScrollbars, int hitType = HitTestRequest::ReadOnly | HitTestRequest::Active); ->>>>>>> webkit.org at r63859:WebCore/page/EventHandler.h +#endif bool mousePressed() const { return m_mousePressed; } void setMousePressed(bool pressed) { m_mousePressed = pressed; } diff --git a/WebCore/page/Settings.cpp b/WebCore/page/Settings.cpp index bca2c7b..95c4d21 100644 --- a/WebCore/page/Settings.cpp +++ b/WebCore/page/Settings.cpp @@ -148,13 +148,10 @@ Settings::Settings(Page* page) , m_html5TreeBuilderEnabled(false) // Will be deleted soon, do not use. , m_paginateDuringLayoutEnabled(false) , m_dnsPrefetchingEnabled(true) -<<<<<<< HEAD:WebCore/page/Settings.cpp + , m_memoryInfoEnabled(false) #ifdef ANDROID_PLUGINS , m_pluginsOnDemand(false) #endif -======= - , m_memoryInfoEnabled(false) ->>>>>>> webkit.org at r63859:WebCore/page/Settings.cpp { // A Frame may not have been created yet, so we initialize the AtomicString // hash before trying to use it. diff --git a/WebCore/page/Settings.h b/WebCore/page/Settings.h index d1ffdbe..8d02d7c 100644 --- a/WebCore/page/Settings.h +++ b/WebCore/page/Settings.h @@ -499,13 +499,10 @@ namespace WebCore { bool m_html5TreeBuilderEnabled: 1; // Will be deleted soon, do not use. bool m_paginateDuringLayoutEnabled : 1; bool m_dnsPrefetchingEnabled : 1; -<<<<<<< HEAD:WebCore/page/Settings.h + bool m_memoryInfoEnabled: 1; #ifdef ANDROID_PLUGINS bool m_pluginsOnDemand : 1; #endif -======= - bool m_memoryInfoEnabled: 1; ->>>>>>> webkit.org at r63859:WebCore/page/Settings.h #if USE(SAFARI_THEME) static bool gShouldPaintNativeControls; |