Index: storage/browser/blob/view_blob_internals_job.cc |
diff --git a/storage/browser/blob/view_blob_internals_job.cc b/storage/browser/blob/view_blob_internals_job.cc |
index ab1f310d09edc0b4b866d73ddcf5599d2366916d..e517b6116ccbbbeb8721a091d5d6aae328877fc1 100644 |
--- a/storage/browser/blob/view_blob_internals_job.cc |
+++ b/storage/browser/blob/view_blob_internals_job.cc |
@@ -17,6 +17,7 @@ |
#include "base/strings/utf_string_conversions.h" |
#include "net/base/escape.h" |
#include "net/base/net_errors.h" |
+#include "net/disk_cache/disk_cache.h" |
#include "net/url_request/url_request.h" |
#include "storage/browser/blob/blob_storage_context.h" |
#include "storage/browser/blob/internal_blob_data.h" |
@@ -218,6 +219,11 @@ void ViewBlobInternalsJob::GenerateHTMLForBlobData( |
out); |
} |
break; |
+ case DataElement::TYPE_DISK_CACHE_ENTRY: |
+ AddHTMLListItem(kType, "disk cache entry", out); |
+ AddHTMLListItem(kURL, item.disk_cache_entry()->GetKey(), out); |
+ NOTREACHED(); |
+ break; |
case DataElement::TYPE_UNKNOWN: |
NOTREACHED(); |
break; |