| 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 "android_webview/common/aw_hit_test_data.h" | 6 #include "android_webview/common/aw_hit_test_data.h" |
| 7 #include "content/public/common/common_param_traits.h" | 7 #include "content/public/common/common_param_traits.h" |
| 8 #include "ipc/ipc_channel_handle.h" | 8 #include "ipc/ipc_channel_handle.h" |
| 9 #include "ipc/ipc_message_macros.h" | 9 #include "ipc/ipc_message_macros.h" |
| 10 #include "ipc/ipc_platform_file.h" | 10 #include "ipc/ipc_platform_file.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 // Request for the renderer to determine if the document contains any image | 42 // Request for the renderer to determine if the document contains any image |
| 43 // elements. The id should be passed in the response message so the response | 43 // elements. The id should be passed in the response message so the response |
| 44 // can be associated with the request. | 44 // can be associated with the request. |
| 45 IPC_MESSAGE_ROUTED1(AwViewMsg_DocumentHasImages, | 45 IPC_MESSAGE_ROUTED1(AwViewMsg_DocumentHasImages, |
| 46 int /* id */) | 46 int /* id */) |
| 47 | 47 |
| 48 // Do hit test at the given webview coordinate. "Webview" coordinates are | 48 // Do hit test at the given webview coordinate. "Webview" coordinates are |
| 49 // physical pixel values with the 0,0 at the top left of the current displayed | 49 // physical pixel values with the 0,0 at the top left of the current displayed |
| 50 // view (ie 0,0 is not the top left of the page if the page is scrolled). | 50 // view (ie 0,0 is not the top left of the page if the page is scrolled). |
| 51 IPC_MESSAGE_ROUTED2(AwViewMsg_DoHitTest, | 51 IPC_MESSAGE_ROUTED4(AwViewMsg_DoHitTest, |
| 52 int /* view_x */, | 52 int /* view_x */, |
| 53 int /* view_y */) | 53 int /* view_y */, |
| 54 float /* touch_major_0 */, |
| 55 float /* touch_major_1 */) |
| 54 | 56 |
| 55 // Sets the zoom factor for text only. Used in layout modes other than | 57 // Sets the zoom factor for text only. Used in layout modes other than |
| 56 // Text Autosizing. | 58 // Text Autosizing. |
| 57 IPC_MESSAGE_ROUTED1(AwViewMsg_SetTextZoomFactor, | 59 IPC_MESSAGE_ROUTED1(AwViewMsg_SetTextZoomFactor, |
| 58 float /* zoom_factor */) | 60 float /* zoom_factor */) |
| 59 | 61 |
| 60 // Resets WebKit WebView scrolling and scale state. We need to send this | 62 // Resets WebKit WebView scrolling and scale state. We need to send this |
| 61 // message whenever we want to guarantee that page's scale will be | 63 // message whenever we want to guarantee that page's scale will be |
| 62 // recalculated by WebKit. | 64 // recalculated by WebKit. |
| 63 IPC_MESSAGE_ROUTED0(AwViewMsg_ResetScrollAndScaleState) | 65 IPC_MESSAGE_ROUTED0(AwViewMsg_ResetScrollAndScaleState) |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 // or creating a URLRequest for the main frame resource. | 114 // or creating a URLRequest for the main frame resource. |
| 113 IPC_SYNC_MESSAGE_CONTROL2_1(AwViewHostMsg_ShouldOverrideUrlLoading, | 115 IPC_SYNC_MESSAGE_CONTROL2_1(AwViewHostMsg_ShouldOverrideUrlLoading, |
| 114 int /* render_frame_id id */, | 116 int /* render_frame_id id */, |
| 115 base::string16 /* in - url */, | 117 base::string16 /* in - url */, |
| 116 bool /* out - result */) | 118 bool /* out - result */) |
| 117 | 119 |
| 118 // Sent when a subframe is created. | 120 // Sent when a subframe is created. |
| 119 IPC_MESSAGE_CONTROL2(AwViewHostMsg_SubFrameCreated, | 121 IPC_MESSAGE_CONTROL2(AwViewHostMsg_SubFrameCreated, |
| 120 int /* parent_render_frame_id */, | 122 int /* parent_render_frame_id */, |
| 121 int /* child_render_frame_id */) | 123 int /* child_render_frame_id */) |
| OLD | NEW |