| Index: content/browser/worker_host/worker_storage_partition.cc
|
| diff --git a/content/browser/worker_host/worker_storage_partition.cc b/content/browser/worker_host/worker_storage_partition.cc
|
| index c7ecf8e744545d24c9430ab3c38911d5dd05e0a3..2c9105721f37c94cae12d9ce0fee5db3e930fbd7 100644
|
| --- a/content/browser/worker_host/worker_storage_partition.cc
|
| +++ b/content/browser/worker_host/worker_storage_partition.cc
|
| @@ -45,13 +45,14 @@ const WorkerStoragePartition& WorkerStoragePartition::operator=(
|
|
|
| bool WorkerStoragePartition::Equals(
|
| const WorkerStoragePartition& other) const {
|
| - return url_request_context_ == other.url_request_context_ &&
|
| - media_url_request_context_ == other.media_url_request_context_ &&
|
| - appcache_service_ == other.appcache_service_ &&
|
| - quota_manager_ == other.quota_manager_ &&
|
| - filesystem_context_ == other.filesystem_context_ &&
|
| - database_tracker_ == other.database_tracker_ &&
|
| - indexed_db_context_ == other.indexed_db_context_;
|
| + return url_request_context_.get() == other.url_request_context_.get() &&
|
| + media_url_request_context_.get() ==
|
| + other.media_url_request_context_.get() &&
|
| + appcache_service_.get() == other.appcache_service_.get() &&
|
| + quota_manager_.get() == other.quota_manager_.get() &&
|
| + filesystem_context_.get() == other.filesystem_context_.get() &&
|
| + database_tracker_.get() == other.database_tracker_.get() &&
|
| + indexed_db_context_.get() == other.indexed_db_context_.get();
|
| }
|
|
|
| WorkerStoragePartition::~WorkerStoragePartition() {
|
|
|