| 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 // For WebUI testing, this message stores parameters to do ScriptEvalRequest at | 269 // For WebUI testing, this message stores parameters to do ScriptEvalRequest at |
| 270 // a time which is late enough to not be thrown out, and early enough to be | 270 // a time which is late enough to not be thrown out, and early enough to be |
| 271 // before onload events are fired. | 271 // before onload events are fired. |
| 272 IPC_MESSAGE_ROUTED4(ChromeViewMsg_WebUIJavaScript, | 272 IPC_MESSAGE_ROUTED4(ChromeViewMsg_WebUIJavaScript, |
| 273 string16, /* frame_xpath */ | 273 string16, /* frame_xpath */ |
| 274 string16, /* jscript_url */ | 274 string16, /* jscript_url */ |
| 275 int, /* ID */ | 275 int, /* ID */ |
| 276 bool /* If true, result is sent back. */) | 276 bool /* If true, result is sent back. */) |
| 277 | 277 |
| 278 // Set the content setting rules stored by the renderer. | 278 // Set the content setting rules stored by the renderer. |
| 279 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetContentSettingRules, | 279 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetContentSettingRules, |
| 280 RendererContentSettingRules /* rules */) | 280 RendererContentSettingRules /* rules */) |
| 281 | 281 |
| 282 // Tells the render view to load all blocked plugins with the given identifier. | 282 // Tells the render view to load all blocked plugins with the given identifier. |
| 283 IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins, | 283 IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins, |
| 284 std::string /* identifier */) | 284 std::string /* identifier */) |
| 285 | 285 |
| 286 // Asks the renderer to send back stats on the WebCore cache broken down by | 286 // Asks the renderer to send back stats on the WebCore cache broken down by |
| 287 // resource types. | 287 // resource types. |
| 288 IPC_MESSAGE_CONTROL0(ChromeViewMsg_GetCacheResourceStats) | 288 IPC_MESSAGE_CONTROL0(ChromeViewMsg_GetCacheResourceStats) |
| 289 | 289 |
| 290 // Tells the renderer to create a FieldTrial, and by using a 100% probability | 290 // Tells the renderer to create a FieldTrial, and by using a 100% probability |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 std::vector<GURL> /* search_urls */, | 769 std::vector<GURL> /* search_urls */, |
| 770 GURL /* new_tab_page_url */) | 770 GURL /* new_tab_page_url */) |
| 771 | 771 |
| 772 // Tells listeners that a detailed message was reported to the console by | 772 // Tells listeners that a detailed message was reported to the console by |
| 773 // WebKit. | 773 // WebKit. |
| 774 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, | 774 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
| 775 string16 /* message */, | 775 string16 /* message */, |
| 776 string16 /* source */, | 776 string16 /* source */, |
| 777 extensions::StackTrace /* stack trace */, | 777 extensions::StackTrace /* stack trace */, |
| 778 int32 /* severity level */) | 778 int32 /* severity level */) |
| OLD | NEW |