Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2014 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 file, no traditional include guard. | |
| 6 #include <string> | |
| 7 #include <vector> | |
| 8 | |
| 9 #include "ipc/ipc_message_macros.h" | |
| 10 #include "ipc/ipc_message_utils.h" | |
| 11 | |
| 12 #define IPC_MESSAGE_START DnsPredictorMsgStart | |
| 13 | |
| 14 //----------------------------------------------------------------------------- | |
| 15 // Host messages | |
| 16 // These are messages sent from the browser to the renderer process. | |
| 17 | |
| 18 // Request for a DNS prefetch of the names in the array. | |
| 19 // NameList is typedef'ed std::vector<std::string> | |
| 20 IPC_MESSAGE_CONTROL1(DnsPredictorMsg_RequestPrefetch, | |
| 21 std::vector<std::string> /* hostnames */) | |
|
palmer
2014/10/13 23:56:21
Does the receiver of this message set any hard lim
gunsch
2014/10/14 15:54:38
As far as I can tell, in Chrome's current implemen
| |
| OLD | NEW |