Changeset 196134 in webkit


Ignore:
Timestamp:
Feb 4, 2016 11:20:46 AM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Removed unused Settings::setPrivateBrowsingEnabled.
https://bugs.webkit.org/show_bug.cgi?id=153869

Patch by Konstantin Tokarev <Konstantin Tokarev> on 2016-02-04
Reviewed by Alexey Proskuryakov.

Implementation of Settings::setPrivateBrowsingEnabled was removed
in r166661, but declaration is still here.

No new tests needed.

  • page/Settings.h:

(WebCore::Settings::setPrivateBrowsingEnabled): Deleted.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r196131 r196134  
     12016-02-04  Konstantin Tokarev  <annulen@yandex.ru>
     2
     3        Removed unused Settings::setPrivateBrowsingEnabled.
     4        https://bugs.webkit.org/show_bug.cgi?id=153869
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        Implementation of Settings::setPrivateBrowsingEnabled was removed
     9        in r166661, but declaration is still here.
     10
     11        No new tests needed.
     12
     13        * page/Settings.h:
     14        (WebCore::Settings::setPrivateBrowsingEnabled): Deleted.
     15
    1162016-02-04  Eric Carlson  <eric.carlson@apple.com>
    217
  • trunk/Source/WebCore/page/Settings.h

    r195644 r196134  
    147147    bool arePluginsEnabled() const { return m_arePluginsEnabled; }
    148148
    149     // When this option is set, WebCore will avoid storing any record of browsing activity
    150     // that may persist on disk or remain displayed when the option is reset.
    151     // This option does not affect the storage of such information in RAM.
    152     // The following functions respect this setting:
    153     //  - HTML5/DOM Storage
    154     //  - Icon Database
    155     //  - Console Messages
    156     //  - MemoryCache
    157     //  - Application Cache
    158     //  - Back/Forward Page History
    159     //  - Page Search Results
    160     //  - HTTP Cookies
    161     //  - Plug-ins (that support NPNVprivateModeBool)
    162     void setPrivateBrowsingEnabled(bool);
    163 
    164149    WEBCORE_EXPORT void setDNSPrefetchingEnabled(bool);
    165150    bool dnsPrefetchingEnabled() const { return m_dnsPrefetchingEnabled; }
Note: See TracChangeset for help on using the changeset viewer.