| 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..1b5e91ef1c1372333a6b4d58ad6dea60e03d4ddc 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,10 @@ 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);
 | 
| +        break;
 | 
|        case DataElement::TYPE_UNKNOWN:
 | 
|          NOTREACHED();
 | 
|          break;
 | 
| 
 |