diff options
author | michaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-25 23:37:19 +0000 |
---|---|---|
committer | michaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-25 23:37:19 +0000 |
commit | ab30809a167f60c09bb25c303213cf416db05a8a (patch) | |
tree | 1aaad2881475e9f1f6d1f10d301807c7da9e6e15 /chrome/browser/content_settings | |
parent | f1b666505ae42a96f2bfd230f40ff3bca8cf283b (diff) | |
download | chromium_src-ab30809a167f60c09bb25c303213cf416db05a8a.zip chromium_src-ab30809a167f60c09bb25c303213cf416db05a8a.tar.gz chromium_src-ab30809a167f60c09bb25c303213cf416db05a8a.tar.bz2 |
* Wire up the delete command in the cookie tree UI to actually delete indexedDBs. Also cleaned up some internal structures used by the UI layer.
* Clean up some loose ends around the transition from sqlite backing to leveldb backing. Code had not been updated to reflect that the indexedDBpath is a directory path instead of a file path.
* Fix a problem with reporting inconsistent size value to the quota manager. Now we always compute deltas against a cached size value and don't change the cached size value w/o reporting a delta.
* Fix a problem with erroneously accessing the filesystem for queries about indexed db usage when working with incognito profiles.
BUG=56249,76641
Review URL: http://codereview.chromium.org/7692016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98352 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/content_settings')
-rw-r--r-- | chrome/browser/content_settings/tab_specific_content_settings.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/content_settings/tab_specific_content_settings.cc b/chrome/browser/content_settings/tab_specific_content_settings.cc index 8549430..1c89bb6 100644 --- a/chrome/browser/content_settings/tab_specific_content_settings.cc +++ b/chrome/browser/content_settings/tab_specific_content_settings.cc @@ -481,7 +481,7 @@ TabSpecificContentSettings::LocalSharedObjectsContainer:: cookies_(new CannedBrowsingDataCookieHelper(profile)), databases_(new CannedBrowsingDataDatabaseHelper(profile)), file_systems_(new CannedBrowsingDataFileSystemHelper(profile)), - indexed_dbs_(new CannedBrowsingDataIndexedDBHelper(profile)), + indexed_dbs_(new CannedBrowsingDataIndexedDBHelper()), local_storages_(new CannedBrowsingDataLocalStorageHelper(profile)), session_storages_(new CannedBrowsingDataLocalStorageHelper(profile)) { } |