Index: chrome/common/render_messages.h |
=================================================================== |
--- chrome/common/render_messages.h (revision 77977) |
+++ chrome/common/render_messages.h (working copy) |
@@ -55,7 +55,6 @@ |
#include "third_party/skia/include/core/SkBitmap.h" |
#include "ui/gfx/rect.h" |
#include "webkit/appcache/appcache_interfaces.h" // enum appcache::Status |
-#include "webkit/blob/blob_data.h" |
#include "webkit/glue/context_menu.h" |
#include "webkit/glue/webaccessibility.h" |
#include "webkit/glue/webcookie.h" |
@@ -402,14 +401,6 @@ |
static void Log(const param_type& p, std::string* l); |
}; |
-template <> |
-struct ParamTraits<scoped_refptr<webkit_blob::BlobData> > { |
- typedef scoped_refptr<webkit_blob::BlobData> param_type; |
- static void Write(Message* m, const param_type& p); |
- static bool Read(const Message* m, void** iter, param_type* r); |
- static void Log(const param_type& p, std::string* l); |
-}; |
- |
// Traits for AudioBuffersState structure. |
template <> |
struct ParamTraits<AudioBuffersState> { |
@@ -2544,23 +2535,6 @@ |
IPC_MESSAGE_CONTROL1(ViewHostMsg_DeviceOrientation_StopUpdating, |
int /* render_view_id */) |
-//--------------------------------------------------------------------------- |
-// Blob messages: |
- |
-// Registers a blob URL referring to the specified blob data. |
-IPC_MESSAGE_CONTROL2(ViewHostMsg_RegisterBlobUrl, |
- GURL /* url */, |
- scoped_refptr<webkit_blob::BlobData> /* blob_data */) |
- |
-// Registers a blob URL referring to the blob data identified by the specified |
-// source URL. |
-IPC_MESSAGE_CONTROL2(ViewHostMsg_RegisterBlobUrlFrom, |
- GURL /* url */, |
- GURL /* src_url */) |
- |
-// Unregister a blob URL. |
-IPC_MESSAGE_CONTROL1(ViewHostMsg_UnregisterBlobUrl, GURL /* url */) |
- |
// Suggest results ----------------------------------------------------------- |
IPC_MESSAGE_ROUTED3(ViewHostMsg_SetSuggestions, |