| 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..ddc1f441b3d72df8a093d39de7bfdae66463f9b9 100644
|
| --- a/storage/browser/blob/view_blob_internals_job.cc
|
| +++ b/storage/browser/blob/view_blob_internals_job.cc
|
| @@ -206,9 +206,6 @@ void ViewBlobInternalsJob::GenerateHTMLForBlobData(
|
| out);
|
| }
|
| break;
|
| - case DataElement::TYPE_BLOB:
|
| - NOTREACHED(); // Should be flattened in the storage context.
|
| - break;
|
| case DataElement::TYPE_FILE_FILESYSTEM:
|
| AddHTMLListItem(kType, "filesystem", out);
|
| AddHTMLListItem(kURL, item.filesystem_url().spec(), out);
|
| @@ -218,6 +215,8 @@ void ViewBlobInternalsJob::GenerateHTMLForBlobData(
|
| out);
|
| }
|
| break;
|
| + case DataElement::TYPE_BLOB: // Should be flattened in the storage context.
|
| + case DataElement::TYPE_DISK_CACHE_ENTRY: // XYZZY wot to do here yo?
|
| case DataElement::TYPE_UNKNOWN:
|
| NOTREACHED();
|
| break;
|
|
|