Chromium Code Reviews| 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. |