| Index: content/browser/storage_partition_impl.cc
|
| diff --git a/content/browser/storage_partition_impl.cc b/content/browser/storage_partition_impl.cc
|
| index 7ba19db086d3e608d288eec93a9530ff70a6b603..c12d8b9ebeeafbc518bf1102adc6ff9b5849966e 100644
|
| --- a/content/browser/storage_partition_impl.cc
|
| +++ b/content/browser/storage_partition_impl.cc
|
| @@ -67,7 +67,8 @@ StoragePartitionImpl::StoragePartitionImpl(
|
| filesystem_context_(filesystem_context),
|
| database_tracker_(database_tracker),
|
| dom_storage_context_(dom_storage_context),
|
| - indexed_db_context_(indexed_db_context) {
|
| + indexed_db_context_(indexed_db_context),
|
| + in_memory_(false) {
|
| }
|
|
|
| StoragePartitionImpl::~StoragePartitionImpl() {
|
| @@ -181,6 +182,10 @@ IndexedDBContextImpl* StoragePartitionImpl::GetIndexedDBContext() {
|
| return indexed_db_context_;
|
| }
|
|
|
| +bool StoragePartitionImpl::InMemory() {
|
| + return in_memory_;
|
| +}
|
| +
|
| void StoragePartitionImpl::SetURLRequestContext(
|
| net::URLRequestContextGetter* url_request_context) {
|
| url_request_context_ = url_request_context;
|
|
|