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

abarth at webkit.org abarth at webkit.org
Wed Dec 22 11:48:07 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 1797c7b38ff8219ab00038daa9e4f4f037f16ed8
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Aug 7 03:37:40 2010 +0000

    2010-08-06  Robert Hogan  <robert at webkit.org>
    
            Reviewed by Adam Barth.
    
            Define setPrivateBrowsingEnabled()
            https://bugs.webkit.org/show_bug.cgi?id=42283
    
            Define the scope of 'private browsing' in WebKit
            See also https://bugs.webkit.org/show_bug.cgi?id=41801
    
            * page/Settings.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64893 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index bc40eed..c7b877c 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-08-06  Robert Hogan  <robert at webkit.org>
+
+        Reviewed by Adam Barth.
+
+        Define setPrivateBrowsingEnabled()
+        https://bugs.webkit.org/show_bug.cgi?id=42283
+
+        Define the scope of 'private browsing' in WebKit
+        See also https://bugs.webkit.org/show_bug.cgi?id=41801
+
+        * page/Settings.h:
+
 2010-08-06  Adam Barth  <abarth at webkit.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebCore/page/Settings.h b/WebCore/page/Settings.h
index 840ab2f..5ed6480 100644
--- a/WebCore/page/Settings.h
+++ b/WebCore/page/Settings.h
@@ -140,6 +140,17 @@ namespace WebCore {
         unsigned sessionStorageQuota() const { return m_sessionStorageQuota; }
 #endif
 
+        // When this option is set, WebCore will avoid storing any record of browsing activity
+        // that may persist on disk or remain displayed when the option is reset.
+        // This option does not affect the storage of such information in RAM.
+        // The following functions respect this setting:
+        //  - HTML5/DOM Storage
+        //  - Icon Database
+        //  - Console Messages
+        //  - Cache
+        //  - Application Cache
+        //  - Back/Forward Page History
+        //  - Page Search Results
         void setPrivateBrowsingEnabled(bool);
         bool privateBrowsingEnabled() const { return m_privateBrowsingEnabled; }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list