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

Unified Diff: chrome/worker/worker_webkitclient_impl.h

Issue 3108042: Support sending BlobData to browser process. Also support sending UploadData... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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 | « chrome/worker/worker_thread.cc ('k') | chrome/worker/worker_webkitclient_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/worker/worker_webkitclient_impl.h
===================================================================
--- chrome/worker/worker_webkitclient_impl.h (revision 57697)
+++ chrome/worker/worker_webkitclient_impl.h (working copy)
@@ -6,6 +6,7 @@
#define CHROME_WORKER_WORKER_WEBKITCLIENT_IMPL_H_
#pragma once
+#include "base/scoped_ptr.h"
#include "third_party/WebKit/WebKit/chromium/public/WebMimeRegistry.h"
#include "webkit/glue/webfileutilities_impl.h"
#include "webkit/glue/webkitclient_impl.h"
@@ -49,6 +50,8 @@
virtual long long databaseGetFileSize(
const WebKit::WebString& vfs_file_name);
+ virtual WebKit::WebBlobRegistry* blobRegistry();
+
// WebMimeRegistry methods:
virtual WebKit::WebMimeRegistry::SupportsType supportsMIMEType(
const WebKit::WebString&);
@@ -67,6 +70,8 @@
private:
webkit_glue::WebFileUtilitiesImpl file_utilities_;
+
+ scoped_ptr<WebKit::WebBlobRegistry> blob_registry_;
};
#endif // CHROME_WORKER_WORKER_WEBKITCLIENT_IMPL_H_
« no previous file with comments | « chrome/worker/worker_thread.cc ('k') | chrome/worker/worker_webkitclient_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698