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

andreas.kling at nokia.com andreas.kling at nokia.com
Wed Dec 22 13:31:47 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit a8dcf3b64c2bfe832686520e1de447d6e5a77063
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Sep 18 16:37:34 2010 +0000

    2010-09-18  Andreas Kling  <andreas.kling at nokia.com>
    
            Reviewed by Antonio Gomes.
    
            [Qt] V8 port: Add FrameLoaderClientQt::allowScriptExtension()
            https://bugs.webkit.org/show_bug.cgi?id=46034
    
            r67749 added FrameLoaderClient::allowScriptExtension() (V8-specific)
            Add a stub implementation that simply returns false for now.
    
            * WebCoreSupport/FrameLoaderClientQt.h:
            (WebCore::FrameLoaderClientQt::allowScriptExtension):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67781 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/qt/ChangeLog b/WebKit/qt/ChangeLog
index fbcc7a9..74b2f7f 100644
--- a/WebKit/qt/ChangeLog
+++ b/WebKit/qt/ChangeLog
@@ -1,3 +1,16 @@
+2010-09-18  Andreas Kling  <andreas.kling at nokia.com>
+
+        Reviewed by Antonio Gomes.
+
+        [Qt] V8 port: Add FrameLoaderClientQt::allowScriptExtension()
+        https://bugs.webkit.org/show_bug.cgi?id=46034
+
+        r67749 added FrameLoaderClient::allowScriptExtension() (V8-specific)
+        Add a stub implementation that simply returns false for now.
+
+        * WebCoreSupport/FrameLoaderClientQt.h:
+        (WebCore::FrameLoaderClientQt::allowScriptExtension):
+
 2010-09-17  Darin Adler  <darin at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.h b/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.h
index edcb25c..fffda58 100644
--- a/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.h
+++ b/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.h
@@ -220,6 +220,10 @@ public:
     // This context is not tied to the lifetime of its frame, and is destroyed
     // in garbage collection.
     virtual void didCreateIsolatedScriptContext();
+
+    // Returns true if we should allow the given V8 extension to be added to
+    // the script context at the currently loading page and given extension group.
+    virtual bool allowScriptExtension(const String& extensionName, int extensionGroup) { return false; }
 #endif
 
     virtual void registerForIconNotification(bool);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list