Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1510)

Unified Diff: storage/browser/blob/view_blob_internals_job.cc

Issue 1108083002: Create blobs from Disk Cache entries. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « storage/browser/blob/shareable_file_reference.h ('k') | storage/common/data_element.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
gavinp 2015/06/16 22:28:02 Whoopsies!
+ break;
case DataElement::TYPE_UNKNOWN:
NOTREACHED();
break;
« no previous file with comments | « storage/browser/blob/shareable_file_reference.h ('k') | storage/common/data_element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698