| Index: net/disk_cache/mem_entry_impl.cc
|
| diff --git a/net/disk_cache/mem_entry_impl.cc b/net/disk_cache/mem_entry_impl.cc
|
| index dfd8ee6e7e5b1aec466154a6c90da18a409fc8fd..7d0095898b4fe75d059d881d231157a2d9940379 100644
|
| --- a/net/disk_cache/mem_entry_impl.cc
|
| +++ b/net/disk_cache/mem_entry_impl.cc
|
| @@ -45,10 +45,11 @@ std::string GenerateChildName(const std::string& base_name, int child_id) {
|
|
|
| // Returns NetLog parameters for the creation of a child MemEntryImpl. Separate
|
| // function needed because child entries don't suppport GetKey().
|
| -Value* NetLogChildEntryCreationCallback(const disk_cache::MemEntryImpl* parent,
|
| - int child_id,
|
| - net::NetLog::LogLevel /* log_level */) {
|
| - DictionaryValue* dict = new DictionaryValue();
|
| +base::Value* NetLogChildEntryCreationCallback(
|
| + const disk_cache::MemEntryImpl* parent,
|
| + int child_id,
|
| + net::NetLog::LogLevel /* log_level */) {
|
| + base::DictionaryValue* dict = new base::DictionaryValue();
|
| dict->SetString("key", GenerateChildName(parent->GetKey(), child_id));
|
| dict->SetBoolean("created", true);
|
| return dict;
|
|
|