| Index: content/browser/in_process_webkit/dom_storage_context.cc | 
| =================================================================== | 
| --- content/browser/in_process_webkit/dom_storage_context.cc	(revision 122721) | 
| +++ content/browser/in_process_webkit/dom_storage_context.cc	(working copy) | 
| @@ -141,7 +141,8 @@ | 
| } | 
|  | 
| void DOMStorageContext::DeleteSessionStorageNamespace(int64 namespace_id) { | 
| -  DCHECK(BrowserThread::CurrentlyOn(BrowserThread::WEBKIT_DEPRECATED)); | 
| +  DCHECK(BrowserThread::CurrentlyOn(BrowserThread::WEBKIT_DEPRECATED) || | 
| +         !BrowserThread::IsMessageLoopValid(BrowserThread::WEBKIT_DEPRECATED)); | 
| StorageNamespaceMap::iterator iter = | 
| storage_namespace_map_.find(namespace_id); | 
| if (iter == storage_namespace_map_.end()) | 
|  |