OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/basictypes.h" | |
10 #include "build/build_config.h" | 9 #include "build/build_config.h" |
11 | 10 |
12 #include "ipc/ipc_message_macros.h" | 11 #include "ipc/ipc_message_macros.h" |
13 #include "ui/gfx/native_widget_types.h" | 12 #include "ui/gfx/native_widget_types.h" |
14 | 13 |
15 #define IPC_MESSAGE_START ChromeBenchmarkingMsgStart | 14 #define IPC_MESSAGE_START ChromeBenchmarkingMsgStart |
16 | 15 |
17 // Message sent from the renderer to the browser to request that the browser | 16 // Message sent from the renderer to the browser to request that the browser |
18 // close all sockets. Used for debugging/testing. | 17 // close all sockets. Used for debugging/testing. |
19 // | 18 // |
(...skipping 12 matching lines...) Expand all Loading... |
32 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearCache, | 31 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearCache, |
33 int /* result */) | 32 int /* result */) |
34 | 33 |
35 // Message sent from the renderer to the browser to request that the browser | 34 // Message sent from the renderer to the browser to request that the browser |
36 // clear the host cache. Used for debugging/testing. | 35 // clear the host cache. Used for debugging/testing. |
37 IPC_SYNC_MESSAGE_CONTROL0_0(ChromeViewHostMsg_ClearHostResolverCache) | 36 IPC_SYNC_MESSAGE_CONTROL0_0(ChromeViewHostMsg_ClearHostResolverCache) |
38 | 37 |
39 // Message sent from the renderer to the browser to request that the browser | 38 // Message sent from the renderer to the browser to request that the browser |
40 // clear the predictor cache. Used for debugging/testing. | 39 // clear the predictor cache. Used for debugging/testing. |
41 IPC_SYNC_MESSAGE_CONTROL0_0(ChromeViewHostMsg_ClearPredictorCache) | 40 IPC_SYNC_MESSAGE_CONTROL0_0(ChromeViewHostMsg_ClearPredictorCache) |
OLD | NEW |