[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

bweinstein at apple.com bweinstein at apple.com
Sun Feb 20 23:21:06 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit a5c0fee213dbf3f9679d51d89da81a5fcf917397
Author: bweinstein at apple.com <bweinstein at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jan 20 02:10:16 2011 +0000

    WebKit2: Need API to get the parent frame of a frame
    https://bugs.webkit.org/show_bug.cgi?id=52774
    
    Reviewed by Darin Adler.
    
    Add the API to get the parent frame of a frame.
    
    * UIProcess/API/C/WKFrame.cpp:
    (WKFrameGetParentFrame):
    * UIProcess/API/C/WKFrame.h:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76188 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebKit2/ChangeLog b/Source/WebKit2/ChangeLog
index d142803..d8f8306 100644
--- a/Source/WebKit2/ChangeLog
+++ b/Source/WebKit2/ChangeLog
@@ -1,3 +1,16 @@
+2011-01-19  Brian Weinstein  <bweinstein at apple.com>
+
+        Reviewed by Darin Adler.
+
+        WebKit2: Need API to get the parent frame of a frame
+        https://bugs.webkit.org/show_bug.cgi?id=52774
+        
+        Add the API to get the parent frame of a frame.
+
+        * UIProcess/API/C/WKFrame.cpp:
+        (WKFrameGetParentFrame):
+        * UIProcess/API/C/WKFrame.h:
+
 2011-01-19  Enrica Casucci  <enrica at apple.com>
 
         Reviewed by Darin Adler.
diff --git a/Source/WebKit2/UIProcess/API/C/WKFrame.cpp b/Source/WebKit2/UIProcess/API/C/WKFrame.cpp
index a245786..282e124 100644
--- a/Source/WebKit2/UIProcess/API/C/WKFrame.cpp
+++ b/Source/WebKit2/UIProcess/API/C/WKFrame.cpp
@@ -95,6 +95,11 @@ WKArrayRef WKFrameCopyChildFrames(WKFrameRef frameRef)
     return toAPI(toImpl(frameRef)->childFrames().releaseRef());
 }
 
+WKFrameRef WKFrameGetParentFrame(WKFrameRef frameRef)
+{
+    return toAPI(toImpl(frameRef)->parentFrame());
+}
+
 WKCertificateInfoRef WKFrameGetCertificateInfo(WKFrameRef frameRef)
 {
     return toAPI(toImpl(frameRef)->certificateInfo());
diff --git a/Source/WebKit2/UIProcess/API/C/WKFrame.h b/Source/WebKit2/UIProcess/API/C/WKFrame.h
index 6538628..7c09642 100644
--- a/Source/WebKit2/UIProcess/API/C/WKFrame.h
+++ b/Source/WebKit2/UIProcess/API/C/WKFrame.h
@@ -58,6 +58,8 @@ WK_EXPORT WKPageRef WKFrameGetPage(WKFrameRef frame);
 
 WK_EXPORT WKArrayRef WKFrameCopyChildFrames(WKFrameRef frame);
 
+WK_EXPORT WKFrameRef WKFrameGetParentFrame(WKFrameRef frame);
+
 WK_EXPORT WKCertificateInfoRef WKFrameGetCertificateInfo(WKFrameRef frame);
 
 WK_EXPORT bool WKFrameCanProvideSource(WKFrameRef frame);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list