OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
jkarlin
2014/06/17 10:15:33
2014
tburkard
2014/06/17 10:46:52
Done.
| |
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 #include "url/gurl.h" | |
10 | |
11 #define IPC_MESSAGE_START PrefetchMsgStart | |
12 | |
13 // Prefetch Messages | |
14 // These are messages sent from the browser to the renderer related to | |
15 // prefetching. | |
16 | |
17 // Instructs the renderer to launch a prefetch within its context. | |
18 IPC_MESSAGE_ROUTED1(PrefetchMsg_Prefetch, | |
19 GURL /* url */) | |
OLD | NEW |