| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include <map> | 6 #include <map> |
| 7 #include <set> | 7 #include <set> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 IPC_MESSAGE_ROUTED4(ChromeViewMsg_WebUIJavaScript, | 252 IPC_MESSAGE_ROUTED4(ChromeViewMsg_WebUIJavaScript, |
| 253 string16, /* frame_xpath */ | 253 string16, /* frame_xpath */ |
| 254 string16, /* jscript_url */ | 254 string16, /* jscript_url */ |
| 255 int, /* ID */ | 255 int, /* ID */ |
| 256 bool /* If true, result is sent back. */) | 256 bool /* If true, result is sent back. */) |
| 257 | 257 |
| 258 // Tells the render view to capture a thumbnail image of the page. The | 258 // Tells the render view to capture a thumbnail image of the page. The |
| 259 // render view responds with a ChromeViewHostMsg_Snapshot. | 259 // render view responds with a ChromeViewHostMsg_Snapshot. |
| 260 IPC_MESSAGE_ROUTED0(ChromeViewMsg_CaptureSnapshot) | 260 IPC_MESSAGE_ROUTED0(ChromeViewMsg_CaptureSnapshot) |
| 261 | 261 |
| 262 // History system notification that the visited link database has been | |
| 263 // replaced. It has one SharedMemoryHandle argument consisting of the table | |
| 264 // handle. This handle is valid in the context of the renderer | |
| 265 IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_NewTable, | |
| 266 base::SharedMemoryHandle) | |
| 267 | |
| 268 // History system notification that a link has been added and the link | |
| 269 // coloring state for the given hash must be re-calculated. | |
| 270 IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_Add, std::vector<uint64>) | |
| 271 | |
| 272 // History system notification that one or more history items have been | |
| 273 // deleted, which at this point means that all link coloring state must be | |
| 274 // re-calculated. | |
| 275 IPC_MESSAGE_CONTROL0(ChromeViewMsg_VisitedLink_Reset) | |
| 276 | |
| 277 // Set the content setting rules stored by the renderer. | 262 // Set the content setting rules stored by the renderer. |
| 278 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetContentSettingRules, | 263 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetContentSettingRules, |
| 279 RendererContentSettingRules /* rules */) | 264 RendererContentSettingRules /* rules */) |
| 280 | 265 |
| 281 // Tells the render view to load all blocked plugins with the given identifier. | 266 // Tells the render view to load all blocked plugins with the given identifier. |
| 282 IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins, | 267 IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins, |
| 283 std::string /* identifier */) | 268 std::string /* identifier */) |
| 284 | 269 |
| 285 // Asks the renderer to send back stats on the WebCore cache broken down by | 270 // Asks the renderer to send back stats on the WebCore cache broken down by |
| 286 // resource types. | 271 // resource types. |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 // previous SetCookie message to be processed. | 701 // previous SetCookie message to be processed. |
| 717 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 702 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 718 GURL /* url */, | 703 GURL /* url */, |
| 719 GURL /* first_party_for_cookies */, | 704 GURL /* first_party_for_cookies */, |
| 720 std::string /* cookies */) | 705 std::string /* cookies */) |
| 721 | 706 |
| 722 // Provide the browser process with current renderer framerate. | 707 // Provide the browser process with current renderer framerate. |
| 723 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 708 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 724 int /* routing id */, | 709 int /* routing id */, |
| 725 float /* frames per second */) | 710 float /* frames per second */) |
| OLD | NEW |