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

jberlin at webkit.org jberlin at webkit.org
Wed Dec 22 18:07:15 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 962d6e940a4b54c7d565dec17e0e3b331aed0823
Author: jberlin at webkit.org <jberlin at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Dec 7 17:14:59 2010 +0000

    Build fix. Unreviewed.
    
    * WebCoreSupport/WebContextMenuClient.cpp:
    (WebContextMenuClient::searchWithGoogle):
    FrameLoader::urlSelected does not take a SecurityOrigin as a parameter.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73448 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/win/ChangeLog b/WebKit/win/ChangeLog
index f43aede..c861f67 100644
--- a/WebKit/win/ChangeLog
+++ b/WebKit/win/ChangeLog
@@ -1,3 +1,11 @@
+2010-12-07  Jessie Berlin  <jberlin at apple.com>
+
+        Build fix. Unreviewed.
+
+        * WebCoreSupport/WebContextMenuClient.cpp:
+        (WebContextMenuClient::searchWithGoogle):
+        FrameLoader::urlSelected does not take a SecurityOrigin as a parameter.
+
 2010-12-06  Darin Adler  <darin at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/WebKit/win/WebCoreSupport/WebContextMenuClient.cpp b/WebKit/win/WebCoreSupport/WebContextMenuClient.cpp
index 25403ab..ede44e2 100644
--- a/WebKit/win/WebCoreSupport/WebContextMenuClient.cpp
+++ b/WebKit/win/WebCoreSupport/WebContextMenuClient.cpp
@@ -105,8 +105,7 @@ void WebContextMenuClient::searchWithGoogle(const Frame* frame)
 
     if (Page* page = frame->page()) {
         UserGestureIndicator indicator(DefinitelyProcessingUserGesture);
-        page->mainFrame()->loader()->urlSelected(page->mainFrame()->document()->securityOrigin(),
-            KURL(ParsedURLString, url), String(), 0, false, false, SendReferrer);
+        page->mainFrame()->loader()->urlSelected(KURL(ParsedURLString, url), String(), 0, false, false, SendReferrer);
     }
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list