| Index: content/browser/dom_storage/dom_storage_message_filter_new.cc
|
| ===================================================================
|
| --- content/browser/dom_storage/dom_storage_message_filter_new.cc (revision 127221)
|
| +++ content/browser/dom_storage/dom_storage_message_filter_new.cc (working copy)
|
| @@ -47,7 +47,7 @@
|
| void DOMStorageMessageFilter::OnFilterAdded(IPC::Channel* channel) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| BrowserMessageFilter::OnFilterAdded(channel);
|
| - context_->task_runner()->PostTask(
|
| + context_->task_runner()->PostShutdownBlockingTask(
|
| FROM_HERE,
|
| base::Bind(&DOMStorageMessageFilter::InitializeInSequence, this));
|
| }
|
| @@ -55,7 +55,7 @@
|
| void DOMStorageMessageFilter::OnFilterRemoved() {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| BrowserMessageFilter::OnFilterRemoved();
|
| - context_->task_runner()->PostTask(
|
| + context_->task_runner()->PostShutdownBlockingTask(
|
| FROM_HERE,
|
| base::Bind(&DOMStorageMessageFilter::UninitializeInSequence, this));
|
| }
|
|
|