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

Unified Diff: content/common/webblob_messages.h

Issue 9558006: Rename content/{common,browser}/file_system to fileapi and move blob stuff into it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 10 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: content/common/webblob_messages.h
diff --git a/content/common/webblob_messages.h b/content/common/webblob_messages.h
deleted file mode 100644
index 7715454e4e4eff665720e5e19b701b9b033d83d3..0000000000000000000000000000000000000000
--- a/content/common/webblob_messages.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// IPC messages for HTML5 Blob.
-// Multiply-included message file, hence no include guard.
-
-#include "content/public/common/common_param_traits.h"
-#include "content/public/common/webkit_param_traits.h"
-#include "ipc/ipc_message_macros.h"
-
-#define IPC_MESSAGE_START BlobMsgStart
-
-IPC_ENUM_TRAITS(webkit_blob::BlobData::Type)
-
-IPC_STRUCT_TRAITS_BEGIN(webkit_blob::BlobData::Item)
- IPC_STRUCT_TRAITS_MEMBER(type)
- IPC_STRUCT_TRAITS_MEMBER(data)
- IPC_STRUCT_TRAITS_MEMBER(file_path)
- IPC_STRUCT_TRAITS_MEMBER(blob_url)
- IPC_STRUCT_TRAITS_MEMBER(offset)
- IPC_STRUCT_TRAITS_MEMBER(length)
- IPC_STRUCT_TRAITS_MEMBER(expected_modification_time)
-IPC_STRUCT_TRAITS_END()
-
-// Blob messages sent from the renderer to the browser.
-
-
-// Registers a blob as being built.
-IPC_MESSAGE_CONTROL1(BlobHostMsg_StartBuildingBlob,
- GURL /* url */)
-
-// Appends data to a blob being built.
-IPC_MESSAGE_CONTROL2(BlobHostMsg_AppendBlobDataItem,
- GURL /* url */,
- webkit_blob::BlobData::Item)
-
-// Appends data to a blob being built.
-IPC_SYNC_MESSAGE_CONTROL3_0(BlobHostMsg_SyncAppendSharedMemory,
- GURL /* url */,
- base::SharedMemoryHandle,
- size_t /* buffer size */)
-
-// Finishes building a blob.
-IPC_MESSAGE_CONTROL2(BlobHostMsg_FinishBuildingBlob,
- GURL /* url */,
- std::string /* content_type */)
-
-// Creates a new blob that's a clone of an existing src blob.
-// The source blob must be fully built.
-IPC_MESSAGE_CONTROL2(BlobHostMsg_CloneBlob,
- GURL /* url */,
- GURL /* src_url */)
-
-// Removes a blob.
-IPC_MESSAGE_CONTROL1(BlobHostMsg_RemoveBlob,
- GURL /* url */)

Powered by Google App Engine
This is Rietveld 408576698