Don't create 'GPUCache' and 'databases' directories when cache-path is unspecified (issue #2289)

This commit is contained in:
Marshall Greenblatt 2017-10-30 16:52:39 -04:00
parent 486e69e23b
commit 9f7bdcf7d5
3 changed files with 29 additions and 3 deletions

View File

@ -234,6 +234,9 @@ patches = [
# (b) Adding BrowserContext::GetStoragePartitionProxy(); # (b) Adding BrowserContext::GetStoragePartitionProxy();
# (c) Removing static_cast<> of StoragePartition to StoragePartitionImpl. # (c) Removing static_cast<> of StoragePartition to StoragePartitionImpl.
# https://bitbucket.org/chromiumembedded/cef/issues/1973 # https://bitbucket.org/chromiumembedded/cef/issues/1973
#
# Don't create a "databases" directory when cache_path is empty.
# https://bitbucket.org/chromiumembedded/cef/issues/2289
'name': 'storage_partition_1973', 'name': 'storage_partition_1973',
}, },
{ {

View File

@ -59,11 +59,15 @@ index 13d802fa72cd..a2d34d1d72eb 100644
partition->GetBluetoothAllowedDevicesMap(); partition->GetBluetoothAllowedDevicesMap();
return allowed_devices_map->GetOrCreateAllowedDevices(GetOrigin()); return allowed_devices_map->GetOrCreateAllowedDevices(GetOrigin());
diff --git content/browser/browser_context.cc content/browser/browser_context.cc diff --git content/browser/browser_context.cc content/browser/browser_context.cc
index 1e3eb64f87ba..e895554337c6 100644 index 1e3eb64f87ba..593e3d15d5ec 100644
--- content/browser/browser_context.cc --- content/browser/browser_context.cc
+++ content/browser/browser_context.cc +++ content/browser/browser_context.cc
@@ -126,8 +126,15 @@ StoragePartition* GetStoragePartitionFromConfig( @@ -123,11 +123,18 @@ StoragePartition* GetStoragePartitionFromConfig(
if (browser_context->IsOffTheRecord()) StoragePartitionImplMap* partition_map =
GetStoragePartitionMap(browser_context);
- if (browser_context->IsOffTheRecord())
+ if (browser_context->IsOffTheRecord() || browser_context->GetPath().empty())
in_memory = true; in_memory = true;
- return partition_map->Get(partition_domain, partition_name, in_memory, - return partition_map->Get(partition_domain, partition_name, in_memory,
@ -664,3 +668,16 @@ index c3c1aa9d5351..08555f42ac39 100644
protected: protected:
virtual ~StoragePartition() {} virtual ~StoragePartition() {}
}; };
diff --git storage/browser/database/database_tracker.cc storage/browser/database/database_tracker.cc
index 86fb9f41fc71..7a8be02473a3 100644
--- storage/browser/database/database_tracker.cc
+++ storage/browser/database/database_tracker.cc
@@ -495,7 +495,7 @@ bool DatabaseTracker::LazyInit() {
meta_table_.reset(new sql::MetaTable());
is_initialized_ =
- base::CreateDirectory(db_dir_) &&
+ (is_incognito_ ? true : base::CreateDirectory(db_dir_)) &&
(db_->is_open() ||
(is_incognito_ ? db_->OpenInMemory() :
db_->Open(kTrackerDatabaseFullPath))) &&

View File

@ -48,6 +48,12 @@ void ClientAppBrowser::OnBeforeCommandLineProcessing(
command_line->AppendSwitchWithValue("top-chrome-md", "non-material"); command_line->AppendSwitchWithValue("top-chrome-md", "non-material");
} }
if (!command_line->HasSwitch(switches::kCachePath) &&
!command_line->HasSwitch("disable-gpu-shader-disk-cache")) {
// Don't create a "GPUCache" directory when cache-path is unspecified.
command_line->AppendSwitch("disable-gpu-shader-disk-cache");
}
DelegateSet::iterator it = delegates_.begin(); DelegateSet::iterator it = delegates_.begin();
for (; it != delegates_.end(); ++it) for (; it != delegates_.end(); ++it)
(*it)->OnBeforeCommandLineProcessing(this, command_line); (*it)->OnBeforeCommandLineProcessing(this, command_line);