]> Pileus Git - ~andy/sunrise/blobdiff - www-client/torbrowser/files/10.0.1/0008-Make-content-pref-service-memory-only-clearable.patch
imported into tree
[~andy/sunrise] / www-client / torbrowser / files / 10.0.1 / 0008-Make-content-pref-service-memory-only-clearable.patch
diff --git a/www-client/torbrowser/files/10.0.1/0008-Make-content-pref-service-memory-only-clearable.patch b/www-client/torbrowser/files/10.0.1/0008-Make-content-pref-service-memory-only-clearable.patch
deleted file mode 100644 (file)
index ac91170..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-From 23a09d0a6def1e2f7190177a875ab5a85c5da7b7 Mon Sep 17 00:00:00 2001
-From: Mike Perry <mikeperry-git@fscked.org>
-Date: Thu, 8 Sep 2011 08:40:17 -0700
-Subject: [PATCH 08/13] Make content pref service memory-only + clearable
-
-This prevents random urls from being inserted into content-prefs.sqllite in
-the profile directory as content prefs change (includes site-zoom and perhaps
-other site prefs?).
----
- .../contentprefs/nsContentPrefService.js           |    4 ++--
- 1 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/toolkit/components/contentprefs/nsContentPrefService.js b/toolkit/components/contentprefs/nsContentPrefService.js
-index adfb650..1619d5f 100644
---- a/toolkit/components/contentprefs/nsContentPrefService.js
-+++ b/toolkit/components/contentprefs/nsContentPrefService.js
-@@ -1240,7 +1240,7 @@ ContentPrefService.prototype = {
-     var dbConnection;
--    if (!dbFile.exists())
-+    if (true || !dbFile.exists())
-       dbConnection = this._dbCreate(dbService, dbFile);
-     else {
-       try {
-@@ -1288,7 +1288,7 @@ ContentPrefService.prototype = {
-   },
-   _dbCreate: function ContentPrefService__dbCreate(aDBService, aDBFile) {
--    var dbConnection = aDBService.openDatabase(aDBFile);
-+    var dbConnection = aDBService.openSpecialDatabase("memory");
-     try {
-       this._dbCreateSchema(dbConnection);
--- 
-1.7.5.4
-