OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Multiply-included message file, no traditional include guard. | 5 // Multiply-included message file, no traditional include guard. |
6 #include "content/public/common/common_param_traits.h" | 6 #include "content/public/common/common_param_traits.h" |
7 #include "content/public/common/referrer.h" | 7 #include "content/public/common/referrer.h" |
8 #include "ipc/ipc_message.h" | 8 #include "ipc/ipc_message.h" |
9 #include "ipc/ipc_message_macros.h" | 9 #include "ipc/ipc_message_macros.h" |
10 #include "ipc/ipc_param_traits.h" | 10 #include "ipc/ipc_param_traits.h" |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 bool /* whether the RenderView is prerendering */) | 46 bool /* whether the RenderView is prerendering */) |
47 | 47 |
48 // Signals to launcher that a prerender is running. | 48 // Signals to launcher that a prerender is running. |
49 IPC_MESSAGE_CONTROL1(PrerenderMsg_OnPrerenderStart, | 49 IPC_MESSAGE_CONTROL1(PrerenderMsg_OnPrerenderStart, |
50 int /* prerender_id */) | 50 int /* prerender_id */) |
51 | 51 |
52 // Signals to launcher that a prerender is running. | 52 // Signals to launcher that a prerender is running. |
53 IPC_MESSAGE_CONTROL1(PrerenderMsg_OnPrerenderStopLoading, | 53 IPC_MESSAGE_CONTROL1(PrerenderMsg_OnPrerenderStopLoading, |
54 int /* prerender_id */) | 54 int /* prerender_id */) |
55 | 55 |
| 56 // Signals to launcher that a prerender has had it's 'domcontentloaded' event. |
| 57 IPC_MESSAGE_CONTROL1(PrerenderMsg_OnPrerenderDomContentLoaded, |
| 58 int /* prerender_id */) |
| 59 |
56 // Signals to a launcher that a new alias has been added to a prerender. | 60 // Signals to a launcher that a new alias has been added to a prerender. |
57 IPC_MESSAGE_CONTROL1(PrerenderMsg_OnPrerenderAddAlias, | 61 IPC_MESSAGE_CONTROL1(PrerenderMsg_OnPrerenderAddAlias, |
58 GURL /* url */) | 62 GURL /* url */) |
59 | 63 |
60 // Signals to a launcher that a new alias has been added to a prerender. | 64 // Signals to a launcher that a new alias has been added to a prerender. |
61 IPC_MESSAGE_CONTROL1(PrerenderMsg_OnPrerenderRemoveAliases, | 65 IPC_MESSAGE_CONTROL1(PrerenderMsg_OnPrerenderRemoveAliases, |
62 std::vector<GURL> /* urls */) | 66 std::vector<GURL> /* urls */) |
63 | 67 |
64 // Signals to a launcher that a prerender is no longer running. | 68 // Signals to a launcher that a prerender is no longer running. |
65 IPC_MESSAGE_CONTROL1(PrerenderMsg_OnPrerenderStop, | 69 IPC_MESSAGE_CONTROL1(PrerenderMsg_OnPrerenderStop, |
66 int /* prerender_id */) | 70 int /* prerender_id */) |
OLD | NEW |