| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 // physical pixel values with the 0,0 at the top left of the current displayed | 48 // physical pixel values with the 0,0 at the top left of the current displayed |
| 49 // view (ie 0,0 is not the top left of the page if the page is scrolled). | 49 // view (ie 0,0 is not the top left of the page if the page is scrolled). |
| 50 IPC_MESSAGE_ROUTED2(AwViewMsg_DoHitTest, | 50 IPC_MESSAGE_ROUTED2(AwViewMsg_DoHitTest, |
| 51 int /* view_x */, | 51 int /* view_x */, |
| 52 int /* view_y */) | 52 int /* view_y */) |
| 53 | 53 |
| 54 // Enables receiving pictures from the renderer on every new frame. | 54 // Enables receiving pictures from the renderer on every new frame. |
| 55 IPC_MESSAGE_ROUTED1(AwViewMsg_EnableCapturePictureCallback, | 55 IPC_MESSAGE_ROUTED1(AwViewMsg_EnableCapturePictureCallback, |
| 56 bool /* enable */) | 56 bool /* enable */) |
| 57 | 57 |
| 58 // Requests a new picture with the latest renderer contents synchronously. |
| 59 // This message blocks the browser process on the renderer until complete. |
| 60 IPC_SYNC_MESSAGE_ROUTED0_0(AwViewMsg_CapturePictureSync) |
| 61 |
| 58 //----------------------------------------------------------------------------- | 62 //----------------------------------------------------------------------------- |
| 59 // RenderView messages | 63 // RenderView messages |
| 60 // These are messages sent from the renderer to the browser process. | 64 // These are messages sent from the renderer to the browser process. |
| 61 | 65 |
| 62 // Response to AwViewMsg_DocumentHasImages request. | 66 // Response to AwViewMsg_DocumentHasImages request. |
| 63 IPC_MESSAGE_ROUTED2(AwViewHostMsg_DocumentHasImagesResponse, | 67 IPC_MESSAGE_ROUTED2(AwViewHostMsg_DocumentHasImagesResponse, |
| 64 int, /* id */ | 68 int, /* id */ |
| 65 bool /* has_images */) | 69 bool /* has_images */) |
| 66 | 70 |
| 67 // Response to AwViewMsg_DoHitTest. | 71 // Response to AwViewMsg_DoHitTest. |
| 68 IPC_MESSAGE_ROUTED1(AwViewHostMsg_UpdateHitTestData, | 72 IPC_MESSAGE_ROUTED1(AwViewHostMsg_UpdateHitTestData, |
| 69 android_webview::AwHitTestData) | 73 android_webview::AwHitTestData) |
| 70 | 74 |
| 71 // Notification that a new picture becomes available. It is only sent if | 75 // Notification that a new picture becomes available. It is only sent if |
| 72 // AwViewMsg_EnableCapturePictureCallback was previously enabled. | 76 // AwViewMsg_EnableCapturePictureCallback was previously enabled. |
| 73 IPC_MESSAGE_ROUTED0(AwViewHostMsg_PictureUpdated) | 77 IPC_MESSAGE_ROUTED0(AwViewHostMsg_PictureUpdated) |
| OLD | NEW |