| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
| 6 // header guard. | 6 // header guard. |
| 7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 1253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1264 | 1264 |
| 1265 // Tells the browser to update the spelling panel with the given word. | 1265 // Tells the browser to update the spelling panel with the given word. |
| 1266 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateSpellingPanelWithMisspelledWord, | 1266 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateSpellingPanelWithMisspelledWord, |
| 1267 string16 /* the word to update the panel with */) | 1267 string16 /* the word to update the panel with */) |
| 1268 | 1268 |
| 1269 // Tells the browser that content in the current page was blocked due to the | 1269 // Tells the browser that content in the current page was blocked due to the |
| 1270 // user's content settings. | 1270 // user's content settings. |
| 1271 IPC_MESSAGE_ROUTED1(ViewHostMsg_ContentBlocked, | 1271 IPC_MESSAGE_ROUTED1(ViewHostMsg_ContentBlocked, |
| 1272 ContentSettingsType /* type of blocked content */) | 1272 ContentSettingsType /* type of blocked content */) |
| 1273 | 1273 |
| 1274 // Tells the browser that a specific Web database in the current page was |
| 1275 // accessed. |
| 1276 IPC_MESSAGE_ROUTED5(ViewHostMsg_WebDatabaseAccessed, |
| 1277 GURL /* origin url */, |
| 1278 string16 /* database name */, |
| 1279 string16 /* database display name */, |
| 1280 unsigned long /* estimated size */, |
| 1281 bool /* blocked by policy */) |
| 1282 |
| 1274 // Initiates a download based on user actions like 'ALT+click'. | 1283 // Initiates a download based on user actions like 'ALT+click'. |
| 1275 IPC_MESSAGE_ROUTED2(ViewHostMsg_DownloadUrl, | 1284 IPC_MESSAGE_ROUTED2(ViewHostMsg_DownloadUrl, |
| 1276 GURL /* url */, | 1285 GURL /* url */, |
| 1277 GURL /* referrer */) | 1286 GURL /* referrer */) |
| 1278 | 1287 |
| 1279 // Used to go to the session history entry at the given offset (ie, -1 will | 1288 // Used to go to the session history entry at the given offset (ie, -1 will |
| 1280 // return the "back" item). | 1289 // return the "back" item). |
| 1281 IPC_MESSAGE_ROUTED1(ViewHostMsg_GoToEntryAtOffset, | 1290 IPC_MESSAGE_ROUTED1(ViewHostMsg_GoToEntryAtOffset, |
| 1282 int /* offset (from current) of history item to get */) | 1291 int /* offset (from current) of history item to get */) |
| 1283 | 1292 |
| (...skipping 1173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2457 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, | 2466 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, |
| 2458 int /* render_view_id */, | 2467 int /* render_view_id */, |
| 2459 int /* bridge_id */) | 2468 int /* bridge_id */) |
| 2460 | 2469 |
| 2461 // Send the tree of accessibility data to the browser, where it's cached | 2470 // Send the tree of accessibility data to the browser, where it's cached |
| 2462 // in order to respond to OS accessibility queries immediately. | 2471 // in order to respond to OS accessibility queries immediately. |
| 2463 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, | 2472 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, |
| 2464 webkit_glue::WebAccessibility) | 2473 webkit_glue::WebAccessibility) |
| 2465 | 2474 |
| 2466 IPC_END_MESSAGES(ViewHost) | 2475 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |