| Index: content/browser/dom_storage/dom_storage_area.cc
|
| diff --git a/content/browser/dom_storage/dom_storage_area.cc b/content/browser/dom_storage/dom_storage_area.cc
|
| index 81c2be745d637f0256e1140804ba3ec1cdb77dc7..ea8fa28c2bdbfa95e98fece6a8e64561180f86ec 100644
|
| --- a/content/browser/dom_storage/dom_storage_area.cc
|
| +++ b/content/browser/dom_storage/dom_storage_area.cc
|
| @@ -357,7 +357,7 @@ void DOMStorageArea::OnMemoryDump(base::trace_event::ProcessMemoryDump* pmd) {
|
| base::trace_event::MemoryDumpManager::GetInstance()
|
| ->system_allocator_pool_name();
|
| if (commit_batch_) {
|
| - auto commit_batch_mad = pmd->CreateAllocatorDump(name + "/commit_batch");
|
| + auto* commit_batch_mad = pmd->CreateAllocatorDump(name + "/commit_batch");
|
| commit_batch_mad->AddScalar(
|
| base::trace_event::MemoryAllocatorDump::kNameSize,
|
| base::trace_event::MemoryAllocatorDump::kUnitsBytes,
|
| @@ -370,7 +370,7 @@ void DOMStorageArea::OnMemoryDump(base::trace_event::ProcessMemoryDump* pmd) {
|
| if (map_->bytes_used() < 1024)
|
| return;
|
|
|
| - auto map_mad = pmd->CreateAllocatorDump(name + "/storage_map");
|
| + auto* map_mad = pmd->CreateAllocatorDump(name + "/storage_map");
|
| map_mad->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize,
|
| base::trace_event::MemoryAllocatorDump::kUnitsBytes,
|
| map_->bytes_used());
|
|
|