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

Unified Diff: content/child/blob_storage/blob_message_filter.cc

Issue 2340133006: [WIP] Hack on Blob mojom (Closed)
Patch Set: Created 4 years, 3 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/child/blob_storage/blob_message_filter.cc
diff --git a/content/child/blob_storage/blob_message_filter.cc b/content/child/blob_storage/blob_message_filter.cc
index 0570e17ba0a9dca480dbce1ab0e41d628031863b..41d7122de0dd8eaa1b0b07bf0ea2f7e3185bcd32 100644
--- a/content/child/blob_storage/blob_message_filter.cc
+++ b/content/child/blob_storage/blob_message_filter.cc
@@ -35,8 +35,6 @@ bool BlobMessageFilter::OnMessageReceived(const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(BlobMessageFilter, message)
IPC_MESSAGE_HANDLER(BlobStorageMsg_RequestMemoryItem, OnRequestMemoryItem)
- IPC_MESSAGE_HANDLER(BlobStorageMsg_CancelBuildingBlob, OnCancelBuildingBlob)
- IPC_MESSAGE_HANDLER(BlobStorageMsg_DoneBuildingBlob, OnDoneBuildingBlob)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
@@ -58,14 +56,4 @@ void BlobMessageFilter::OnRequestMemoryItem(
sender_);
}
-void BlobMessageFilter::OnCancelBuildingBlob(
- const std::string& uuid,
- storage::IPCBlobCreationCancelCode code) {
- BlobTransportController::GetInstance()->OnCancel(uuid, code);
-}
-
-void BlobMessageFilter::OnDoneBuildingBlob(const std::string& uuid) {
- BlobTransportController::GetInstance()->OnDone(uuid);
-}
-
} // namespace content
« no previous file with comments | « content/child/blob_storage/blob_message_filter.h ('k') | content/child/blob_storage/blob_transport_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698