| Index: net/tools/dump_cache/simple_cache_dumper.cc
|
| diff --git a/net/tools/dump_cache/simple_cache_dumper.cc b/net/tools/dump_cache/simple_cache_dumper.cc
|
| index 4e846cb2bf7e24211ed339137a919085a668e41c..42429cddeaa2a769d5542a1d3bf58b31ef8b36e6 100644
|
| --- a/net/tools/dump_cache/simple_cache_dumper.cc
|
| +++ b/net/tools/dump_cache/simple_cache_dumper.cc
|
| @@ -125,9 +125,15 @@ int SimpleCacheDumper::DoCreateCache() {
|
| DCHECK(!cache_);
|
| state_ = STATE_CREATE_CACHE_COMPLETE;
|
| return disk_cache::CreateCacheBackend(
|
| - DISK_CACHE, CACHE_BACKEND_DEFAULT, input_path_, 0, false,
|
| - cache_thread_->message_loop_proxy(),
|
| - NULL, &cache_, io_callback_);
|
| + DISK_CACHE,
|
| + CACHE_BACKEND_DEFAULT,
|
| + input_path_,
|
| + 0,
|
| + false,
|
| + cache_thread_->message_loop_proxy().get(),
|
| + NULL,
|
| + &cache_,
|
| + io_callback_);
|
| }
|
|
|
| int SimpleCacheDumper::DoCreateCacheComplete(int rv) {
|
|
|