| Index: content/browser/dom_storage/dom_storage_context_impl.cc
|
| diff --git a/content/browser/dom_storage/dom_storage_context_impl.cc b/content/browser/dom_storage/dom_storage_context_impl.cc
|
| index 683e105d7d4587564208ed0abe0bd487c1195c76..106a773f1b0967067017703dc0058757fd75e406 100644
|
| --- a/content/browser/dom_storage/dom_storage_context_impl.cc
|
| +++ b/content/browser/dom_storage/dom_storage_context_impl.cc
|
| @@ -133,13 +133,15 @@ void DOMStorageContextImpl::DeleteLocalStorageFile(const FilePath& file_path) {
|
| FilePathToOrigin(file_path)));
|
| }
|
|
|
| -void DOMStorageContextImpl::DeleteDataModifiedSince(const base::Time& cutoff) {
|
| +void DOMStorageContextImpl::DeleteDataModifiedSince(
|
| + const base::Time& cutoff,
|
| + bool include_protected_origins) {
|
| DCHECK(context_);
|
| context_->task_runner()->PostShutdownBlockingTask(
|
| FROM_HERE,
|
| DomStorageTaskRunner::PRIMARY_SEQUENCE,
|
| base::Bind(&DomStorageContext::DeleteDataModifiedSince, context_,
|
| - cutoff));
|
| + cutoff, include_protected_origins));
|
| }
|
|
|
| void DOMStorageContextImpl::PurgeMemory() {
|
|
|