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 1850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1861 // Initiates an update of the appcache associated with host_id. | 1861 // Initiates an update of the appcache associated with host_id. |
1862 IPC_SYNC_MESSAGE_CONTROL1_1(AppCacheMsg_StartUpdate, | 1862 IPC_SYNC_MESSAGE_CONTROL1_1(AppCacheMsg_StartUpdate, |
1863 int /* host_id */, | 1863 int /* host_id */, |
1864 bool /* success */) | 1864 bool /* success */) |
1865 | 1865 |
1866 // Swaps a new pending appcache, if there is one, into use for host_id. | 1866 // Swaps a new pending appcache, if there is one, into use for host_id. |
1867 IPC_SYNC_MESSAGE_CONTROL1_1(AppCacheMsg_SwapCache, | 1867 IPC_SYNC_MESSAGE_CONTROL1_1(AppCacheMsg_SwapCache, |
1868 int /* host_id */, | 1868 int /* host_id */, |
1869 bool /* success */) | 1869 bool /* success */) |
1870 | 1870 |
1871 // Returns the resizer box location in the window this widget is embedded. | |
1872 // Important for Mac OS X, but not Win or Linux. | |
1873 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetRootWindowResizerRect, | |
1874 gfx::NativeViewId /* window */, | |
1875 gfx::Rect /* Out: Window location */) | |
1876 | |
1877 // Queries the browser for AutoFill suggestions for a form input field. | 1871 // Queries the browser for AutoFill suggestions for a form input field. |
1878 IPC_MESSAGE_ROUTED3(ViewHostMsg_QueryFormFieldAutoFill, | 1872 IPC_MESSAGE_ROUTED3(ViewHostMsg_QueryFormFieldAutoFill, |
1879 int /* id of this message */, | 1873 int /* id of this message */, |
1880 bool /* form_autofilled */, | 1874 bool /* form_autofilled */, |
1881 webkit_glue::FormField /* the form field */) | 1875 webkit_glue::FormField /* the form field */) |
1882 | 1876 |
1883 // Instructs the browser to fill in the values for a form using AutoFill | 1877 // Instructs the browser to fill in the values for a form using AutoFill |
1884 // profile data. | 1878 // profile data. |
1885 IPC_MESSAGE_ROUTED5(ViewHostMsg_FillAutoFillFormData, | 1879 IPC_MESSAGE_ROUTED5(ViewHostMsg_FillAutoFillFormData, |
1886 int /* id of this message */, | 1880 int /* id of this message */, |
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2524 // Send the tree of accessibility data to the browser, where it's cached | 2518 // Send the tree of accessibility data to the browser, where it's cached |
2525 // in order to respond to OS accessibility queries immediately. | 2519 // in order to respond to OS accessibility queries immediately. |
2526 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, | 2520 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, |
2527 webkit_glue::WebAccessibility) | 2521 webkit_glue::WebAccessibility) |
2528 | 2522 |
2529 // Notifies the TabContents that the content being displayed is PDF. | 2523 // Notifies the TabContents that the content being displayed is PDF. |
2530 // This allows the browser to handle things such as zooming differently. | 2524 // This allows the browser to handle things such as zooming differently. |
2531 IPC_MESSAGE_ROUTED0(ViewHostMsg_SetDisplayingPDFContent) | 2525 IPC_MESSAGE_ROUTED0(ViewHostMsg_SetDisplayingPDFContent) |
2532 | 2526 |
2533 IPC_END_MESSAGES(ViewHost) | 2527 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |