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

Unified Diff: content/common/render_process_messages.h

Issue 1915833002: Introduce Platform::cacheMetadataInCacheStorage() to store V8 code cache in CacheStorage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add comments in render_process_messages.h Created 4 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: content/common/render_process_messages.h
diff --git a/content/common/render_process_messages.h b/content/common/render_process_messages.h
index e802f8e642847dc0559f0f89e3aff90e41a48aa5..d306b4e1df5e891a6ec7094efa5ea2b7b2a71434 100644
--- a/content/common/render_process_messages.h
+++ b/content/common/render_process_messages.h
@@ -14,6 +14,7 @@
#include "ipc/ipc_message_macros.h"
#include "ipc/ipc_message_utils.h"
#include "url/gurl.h"
+#include "url/origin.h"
#if defined(OS_MACOSX)
#include "content/common/mac/font_descriptor.h"
@@ -54,6 +55,16 @@ IPC_MESSAGE_CONTROL3(RenderProcessHostMsg_DidGenerateCacheableMetadata,
base::Time /* expected_response_time */,
std::vector<char> /* data */)
+// Message sent from the renderer to the browser to request that the browser
+// cache |data| for the specified CacheStorage entry.
+IPC_MESSAGE_CONTROL5(
+ RenderProcessHostMsg_DidGenerateCacheableMetadataInCacheStorage,
+ GURL /* url */,
+ base::Time /* expected_response_time */,
+ std::vector<char> /* data */,
+ url::Origin /* cache_storage_origin*/,
+ std::string /* cache_storage_cache_name */)
+
// Notify the browser that this render process can or can't be suddenly
// terminated.
IPC_MESSAGE_CONTROL1(RenderProcessHostMsg_SuddenTerminationChanged,

Powered by Google App Engine
This is Rietveld 408576698