[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e

ap at apple.com ap at apple.com
Fri Jan 21 14:58:26 UTC 2011


The following commit has been merged in the debian/experimental branch:
commit 92c51feed3f513bf736f18b55d74c05cad755a92
Author: ap at apple.com <ap at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jan 5 19:48:43 2011 +0000

            Reviewed by Anders Carlsson.
    
            https://bugs.webkit.org/show_bug.cgi?id=51935
            Add WebKit2 API for largest frame
    
            * UIProcess/API/C/WKPage.cpp:
            (WKPageGetFrameSetLargestFrame):
            * UIProcess/API/C/WKPage.h:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@75089 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index de449af..c026edb 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,14 @@
+2011-01-05  Alexey Proskuryakov  <ap at apple.com>
+
+        Reviewed by Anders Carlsson.
+
+        https://bugs.webkit.org/show_bug.cgi?id=51935
+        Add WebKit2 API for largest frame
+
+        * UIProcess/API/C/WKPage.cpp:
+        (WKPageGetFrameSetLargestFrame):
+        * UIProcess/API/C/WKPage.h:
+
 2011-01-05  Anders Carlsson  <andersca at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/WebKit2/UIProcess/API/C/WKPage.cpp b/WebKit2/UIProcess/API/C/WKPage.cpp
index 22f5298..0720ca1 100644
--- a/WebKit2/UIProcess/API/C/WKPage.cpp
+++ b/WebKit2/UIProcess/API/C/WKPage.cpp
@@ -152,6 +152,11 @@ WKFrameRef WKPageGetFocusedFrame(WKPageRef pageRef)
     return toAPI(toImpl(pageRef)->focusedFrame());
 }
 
+WKFrameRef WKPageGetFrameSetLargestFrame(WKPageRef pageRef)
+{
+    return toAPI(toImpl(pageRef)->frameSetLargestFrame());
+}
+
 #if defined(ENABLE_INSPECTOR) && ENABLE_INSPECTOR
 WKInspectorRef WKPageGetInspector(WKPageRef pageRef)
 {
diff --git a/WebKit2/UIProcess/API/C/WKPage.h b/WebKit2/UIProcess/API/C/WKPage.h
index a03d2bf..a827a33 100644
--- a/WebKit2/UIProcess/API/C/WKPage.h
+++ b/WebKit2/UIProcess/API/C/WKPage.h
@@ -268,6 +268,7 @@ WK_EXPORT WKStringRef WKPageCopyTitle(WKPageRef page);
 
 WK_EXPORT WKFrameRef WKPageGetMainFrame(WKPageRef page);
 WK_EXPORT WKFrameRef WKPageGetFocusedFrame(WKPageRef page); // The focused frame may be inactive.
+WK_EXPORT WKFrameRef WKPageGetFrameSetLargestFrame(WKPageRef page);
 WK_EXPORT double WKPageGetEstimatedProgress(WKPageRef page);
 
 #if defined(ENABLE_INSPECTOR) && ENABLE_INSPECTOR

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list