Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(102)

Unified Diff: Source/WebCore/page/Settings.h

Issue 13861033: Remove Apple's unused implementation of private browsing from WebCore (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/WebCore/page/Settings.h
diff --git a/Source/WebCore/page/Settings.h b/Source/WebCore/page/Settings.h
index 160d4c1c1fdf0554cca314faf85f718313a4da21..f7a91502e7c7dd21ea8d207875852ee47d7809fd 100644
--- a/Source/WebCore/page/Settings.h
+++ b/Source/WebCore/page/Settings.h
@@ -134,22 +134,6 @@ namespace WebCore {
void setPluginsEnabled(bool);
bool arePluginsEnabled() const { return m_arePluginsEnabled; }
- // 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
- // - MemoryCache
- // - Application Cache
- // - Back/Forward Page History
- // - Page Search Results
- // - HTTP Cookies
- // - Plug-ins (that support NPNVprivateModeBool)
- void setPrivateBrowsingEnabled(bool);
- bool privateBrowsingEnabled() const { return m_privateBrowsingEnabled; }
-
void setDNSPrefetchingEnabled(bool);
bool dnsPrefetchingEnabled() const { return m_dnsPrefetchingEnabled; }
@@ -249,7 +233,6 @@ namespace WebCore {
bool m_isJavaEnabled : 1;
bool m_loadsImagesAutomatically : 1;
- bool m_privateBrowsingEnabled : 1;
bool m_areImagesEnabled : 1;
bool m_arePluginsEnabled : 1;
bool m_isScriptEnabled : 1;

Powered by Google App Engine
This is Rietveld 408576698