Title: [132792] trunk/Source/WebKit/blackberry
Revision
132792
Author
[email protected]
Date
2012-10-29 06:07:47 -0700 (Mon, 29 Oct 2012)

Log Message

[BlackBerry] Fix a build error
https://bugs.webkit.org/show_bug.cgi?id=100649

Patch by Robin Cao <[email protected]> on 2012-10-29
Reviewed by Kentaro Hara.

r127876 changed the signature of WebCore::EventHandler::hitTestResultAtPoint()
and this commit was later reverted. We need to update a call site in the
BlackBerry port to make it build.

* Api/WebPage.cpp:
(BlackBerry::WebKit::WebPagePrivate::hitTestResult):

Modified Paths

Diff

Modified: trunk/Source/WebKit/blackberry/Api/WebPage.cpp (132791 => 132792)


--- trunk/Source/WebKit/blackberry/Api/WebPage.cpp	2012-10-29 12:51:31 UTC (rev 132791)
+++ trunk/Source/WebKit/blackberry/Api/WebPage.cpp	2012-10-29 13:07:47 UTC (rev 132792)
@@ -6364,7 +6364,7 @@
 {
     if (m_cachedHitTestContentPos != contentPos) {
         m_cachedHitTestContentPos = contentPos;
-        m_cachedHitTestResult = m_mainFrame->eventHandler()->hitTestResultAtPoint(m_cachedHitTestContentPos, HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::AllowShadowContent);
+        m_cachedHitTestResult = m_mainFrame->eventHandler()->hitTestResultAtPoint(m_cachedHitTestContentPos, true /*allowShadowContent*/);
     }
 
     return m_cachedHitTestResult;

Modified: trunk/Source/WebKit/blackberry/ChangeLog (132791 => 132792)


--- trunk/Source/WebKit/blackberry/ChangeLog	2012-10-29 12:51:31 UTC (rev 132791)
+++ trunk/Source/WebKit/blackberry/ChangeLog	2012-10-29 13:07:47 UTC (rev 132792)
@@ -1,3 +1,17 @@
+2012-10-29  Robin Cao  <[email protected]>
+
+        [BlackBerry] Fix a build error
+        https://bugs.webkit.org/show_bug.cgi?id=100649
+
+        Reviewed by Kentaro Hara.
+
+        r127876 changed the signature of WebCore::EventHandler::hitTestResultAtPoint()
+        and this commit was later reverted. We need to update a call site in the
+        BlackBerry port to make it build.
+
+        * Api/WebPage.cpp:
+        (BlackBerry::WebKit::WebPagePrivate::hitTestResult):
+
 2012-10-26  Jacky Jiang  <[email protected]>
 
         [BlackBerry][FullScreen] entering/leaving fullscreen results in temporary glitches on the screen
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to