| Index: content/browser/dom_storage/dom_storage_namespace.cc
|
| diff --git a/content/browser/dom_storage/dom_storage_namespace.cc b/content/browser/dom_storage/dom_storage_namespace.cc
|
| index a8681b6e6c2b148491689f6c47b543172dbab08d..a5e35e1630f31e80181fd9a8832ae4ea47060d52 100644
|
| --- a/content/browser/dom_storage/dom_storage_namespace.cc
|
| +++ b/content/browser/dom_storage/dom_storage_namespace.cc
|
| @@ -176,6 +176,14 @@ unsigned int DOMStorageNamespace::CountInMemoryAreas() const {
|
| return area_count;
|
| }
|
|
|
| +bool DOMStorageNamespace::OnMemoryDump(
|
| + base::trace_event::ProcessMemoryDump* pmd) {
|
| + DCHECK(task_runner_->IsRunningOnPrimarySequence());
|
| + for (const auto& it : areas_)
|
| + it.second.area_->OnMemoryDump(pmd);
|
| + return true;
|
| +}
|
| +
|
| DOMStorageNamespace::AreaHolder*
|
| DOMStorageNamespace::GetAreaHolder(const GURL& origin) {
|
| AreaMap::iterator found = areas_.find(origin);
|
|
|