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

Unified Diff: third_party/WebKit/Source/platform/blob/BlobRegistry.cpp

Issue 2892953006: WIP POC blob transport over mojo
Patch Set: pass mojo blobs over ipc Created 3 years, 7 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
Index: third_party/WebKit/Source/platform/blob/BlobRegistry.cpp
diff --git a/third_party/WebKit/Source/platform/blob/BlobRegistry.cpp b/third_party/WebKit/Source/platform/blob/BlobRegistry.cpp
index a672b2bae41850b45cfa5c6bf5138dc143757557..48937004ff92ffe5f415dc04c9943a8f808ed378 100644
--- a/third_party/WebKit/Source/platform/blob/BlobRegistry.cpp
+++ b/third_party/WebKit/Source/platform/blob/BlobRegistry.cpp
@@ -89,6 +89,10 @@ static void RemoveFromOriginMap(const KURL& url) {
OriginMap()->erase(url.GetString());
}
+base::SingleThreadTaskRunner* BlobRegistry::GetIORunner() {
+ return GetBlobRegistry()->GetIORunner();
+}
+
void BlobRegistry::RegisterBlobData(const String& uuid,
std::unique_ptr<BlobData> data) {
GetBlobRegistry()->RegisterBlobData(uuid, WebBlobData(std::move(data)));

Powered by Google App Engine
This is Rietveld 408576698