Changeset 64893 in webkit


Ignore:
Timestamp:
Aug 6, 2010 8:37:40 PM (14 years ago)
Author:
abarth@webkit.org
Message:

2010-08-06 Robert Hogan <robert@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:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64890 r64893  
     12010-08-06  Robert Hogan  <robert@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Define setPrivateBrowsingEnabled()
     6        https://bugs.webkit.org/show_bug.cgi?id=42283
     7
     8        Define the scope of 'private browsing' in WebKit
     9        See also https://bugs.webkit.org/show_bug.cgi?id=41801
     10
     11        * page/Settings.h:
     12
    1132010-08-06  Adam Barth  <abarth@webkit.org>
    214
  • trunk/WebCore/page/Settings.h

    r64230 r64893  
    141141#endif
    142142
     143        // When this option is set, WebCore will avoid storing any record of browsing activity
     144        // that may persist on disk or remain displayed when the option is reset.
     145        // This option does not affect the storage of such information in RAM.
     146        // The following functions respect this setting:
     147        //  - HTML5/DOM Storage
     148        //  - Icon Database
     149        //  - Console Messages
     150        //  - Cache
     151        //  - Application Cache
     152        //  - Back/Forward Page History
     153        //  - Page Search Results
    143154        void setPrivateBrowsingEnabled(bool);
    144155        bool privateBrowsingEnabled() const { return m_privateBrowsingEnabled; }
Note: See TracChangeset for help on using the changeset viewer.