| Index: net/disk_cache/simple/simple_net_log_parameters.cc
|
| diff --git a/net/disk_cache/simple/simple_net_log_parameters.cc b/net/disk_cache/simple/simple_net_log_parameters.cc
|
| index 4756c83b9fd136c5a9b16f24dde4757b3b65e0a8..f3d9fe5b40ee95fee8cd38d9b21b81a8576f9e84 100644
|
| --- a/net/disk_cache/simple/simple_net_log_parameters.cc
|
| +++ b/net/disk_cache/simple/simple_net_log_parameters.cc
|
| @@ -17,7 +17,7 @@ namespace {
|
|
|
| base::Value* NetLogSimpleEntryConstructionCallback(
|
| const disk_cache::SimpleEntryImpl* entry,
|
| - net::NetLog::LogLevel log_level) {
|
| + net::NetLogCaptureMode capture_mode) {
|
| base::DictionaryValue* dict = new base::DictionaryValue();
|
| dict->SetString("entry_hash",
|
| base::StringPrintf("%#016" PRIx64, entry->entry_hash()));
|
| @@ -27,7 +27,7 @@ base::Value* NetLogSimpleEntryConstructionCallback(
|
| base::Value* NetLogSimpleEntryCreationCallback(
|
| const disk_cache::SimpleEntryImpl* entry,
|
| int net_error,
|
| - net::NetLog::LogLevel /* log_level */) {
|
| + net::NetLogCaptureMode /* capture_mode */) {
|
| base::DictionaryValue* dict = new base::DictionaryValue();
|
| dict->SetInteger("net_error", net_error);
|
| if (net_error == net::OK)
|
|
|