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

Unified Diff: content/common/view_messages.h

Issue 7461106: Inform disk cache of WebKit memory cache hits. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 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/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index 0e04b5091b42de942406bad8781e4be154b49666..1093a373fddbe1dbf6377cd6700e5b9d30bab94b 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -1413,6 +1413,12 @@ IPC_MESSAGE_ROUTED2(ViewHostMsg_DidLoadResourceFromMemoryCache,
GURL /* url */,
std::string /* security info */)
+// Sent when the renderer accesses a resource in its memory cache. Used to
+// synchronize the disk cache with the memory cache.
+IPC_MESSAGE_CONTROL2(ViewHostMsg_DidAccessResourceInMemoryCache,
darin (slow to review) 2011/07/30 05:09:32 it slightly bugs me that we have DidLoadResourceFr
+ GURL /* url */,
+ std::string /* http method */)
+
// Sent when the renderer displays insecure content in a secure page.
IPC_MESSAGE_ROUTED0(ViewHostMsg_DidDisplayInsecureContent)

Powered by Google App Engine
This is Rietveld 408576698