[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

tony at chromium.org tony at chromium.org
Wed Dec 22 13:19:02 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 3843708803cb94341aab55251936502cb01aabbd
Author: tony at chromium.org <tony at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 10 23:47:27 2010 +0000

    2010-09-10  Tony Chang  <tony at chromium.org>
    
            Unreviewed, fix chromium compile after r67238.
    
            shouldChangeSelection was removed from Frame.
    
            * src/WebFrameImpl.cpp:
            (WebKit::WebFrameImpl::selectWordAroundPosition):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67250 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index 2b4b3db..8176a84 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,12 @@
+2010-09-10  Tony Chang  <tony at chromium.org>
+
+        Unreviewed, fix chromium compile after r67238.
+
+        shouldChangeSelection was removed from Frame.
+
+        * src/WebFrameImpl.cpp:
+        (WebKit::WebFrameImpl::selectWordAroundPosition):
+
 2010-09-10  Nat Duca  <nduca at chromium.org>
 
         Reviewed by Darin Fisher.
diff --git a/WebKit/chromium/src/WebFrameImpl.cpp b/WebKit/chromium/src/WebFrameImpl.cpp
index baa00d5..50bf2e9 100644
--- a/WebKit/chromium/src/WebFrameImpl.cpp
+++ b/WebKit/chromium/src/WebFrameImpl.cpp
@@ -1228,7 +1228,7 @@ void WebFrameImpl::selectWordAroundPosition(Frame* frame, VisiblePosition pos)
     VisibleSelection selection(pos);
     selection.expandUsingGranularity(WordGranularity);
 
-    if (frame->shouldChangeSelection(selection)) {
+    if (frame->selection()->shouldChangeSelection(selection)) {
         TextGranularity granularity = selection.isRange() ? WordGranularity : CharacterGranularity;
         frame->selection()->setSelection(selection, granularity);
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list