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

Unified Diff: content/common/appcache_messages.h

Issue 6667057: Loading from the "most appropiate" appcache. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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/appcache_messages.h
===================================================================
--- content/common/appcache_messages.h (revision 78411)
+++ content/common/appcache_messages.h (working copy)
@@ -43,6 +43,14 @@
IPC_MESSAGE_CONTROL1(AppCacheHostMsg_UnregisterHost,
int /* host_id */)
+// Informs the browser about which host caused another to be created.
adamk 2011/03/17 23:33:29 grammar nit: s/about/of/
michaeln 2011/03/17 23:59:04 Done.
+// This can influence which appcache should be utlized for the main
adamk 2011/03/17 23:33:29 s/utlized/utilized/
michaeln 2011/03/17 23:59:04 Done.
+// resource load into the newly created host, so it should be sent
+// prior to the main resource request being initiated.
+IPC_MESSAGE_CONTROL2(AppCacheHostMsg_SetSpawningHostId,
+ int /* host_id */,
+ int /* spawning_host_id */)
+
// Initiates the cache selection algorithm for the given host.
// This is sent prior to any subresource loads. An AppCacheMsg_CacheSelected
// message will be sent in response.

Powered by Google App Engine
This is Rietveld 408576698