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

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

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.h
diff --git a/third_party/WebKit/Source/platform/blob/BlobRegistry.h b/third_party/WebKit/Source/platform/blob/BlobRegistry.h
index 0dbe101b54460c9e08d6347a1a0119e6f07667aa..a1cd1d073726947ff72341ced4d1d9c4b53179cc 100644
--- a/third_party/WebKit/Source/platform/blob/BlobRegistry.h
+++ b/third_party/WebKit/Source/platform/blob/BlobRegistry.h
@@ -37,6 +37,10 @@
#include "platform/wtf/Forward.h"
#include "platform/wtf/PassRefPtr.h"
+namespace base {
+class SingleThreadTaskRunner;
+}
+
namespace blink {
class BlobData;
@@ -50,6 +54,8 @@ class PLATFORM_EXPORT BlobRegistry {
STATIC_ONLY(BlobRegistry);
public:
+ static base::SingleThreadTaskRunner* GetIORunner();
+
// Methods for controlling Blobs.
static void RegisterBlobData(const String& uuid, std::unique_ptr<BlobData>);
static void AddBlobDataRef(const String& uuid);
« no previous file with comments | « third_party/WebKit/Source/platform/blob/BlobData.cpp ('k') | third_party/WebKit/Source/platform/blob/BlobRegistry.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698