OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Multiply-included message file, no traditional include guard. |
| 6 #include "ipc/ipc_message.h" |
| 7 #include "ipc/ipc_message_macros.h" |
| 8 #include "ipc/ipc_param_traits.h" |
| 9 |
| 10 #define IPC_MESSAGE_START PrerenderMsgStart |
| 11 |
| 12 // Tells a renderer if it's currently being prerendered. Must only be set |
| 13 // to true before any navigation occurs, and only set to false at most once |
| 14 // after that. |
| 15 IPC_MESSAGE_ROUTED1(PrerenderMsg_SetIsPrerendering, |
| 16 bool /* whether the RenderView is prerendering */) |
| 17 |
| 18 IPC_MESSAGE_CONTROL1(PrerenderMsg_AddPrerenderURL, |
| 19 GURL /* url */) |
| 20 |
| 21 IPC_MESSAGE_CONTROL1(PrerenderMsg_RemovePrerenderURL, |
| 22 GURL /* url */) |
OLD | NEW |