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" | 9 #include "base/basictypes.h" |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearCache, | 32 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearCache, |
33 int /* result */) | 33 int /* result */) |
34 | 34 |
35 // Message sent from the renderer to the browser to request that the browser | 35 // Message sent from the renderer to the browser to request that the browser |
36 // clear the host cache. Used for debugging/testing. | 36 // clear the host cache. Used for debugging/testing. |
37 // |result| is the returned status from the operation. | 37 // |result| is the returned status from the operation. |
38 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearHostResolverCache, | 38 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearHostResolverCache, |
39 int /* result */) | 39 int /* result */) |
40 | 40 |
41 // Message sent from the renderer to the browser to request that the browser | 41 // Message sent from the renderer to the browser to request that the browser |
42 // enable or disable spdy. Used for debugging/testing/benchmarking. | |
43 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_EnableSpdy, | |
44 bool /* enable */) | |
45 | |
46 // Message sent from the renderer to the browser to request that the browser | |
47 // clear the predictor cache. Used for debugging/testing. | 42 // clear the predictor cache. Used for debugging/testing. |
48 // |result| is the returned status from the operation. | 43 // |result| is the returned status from the operation. |
49 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearPredictorCache, | 44 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_ClearPredictorCache, |
50 int /* result */) | 45 int /* result */) |
OLD | NEW |