| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 80 |
| 81 // Response to AwViewMsg_DocumentHasImages request. | 81 // Response to AwViewMsg_DocumentHasImages request. |
| 82 IPC_MESSAGE_ROUTED2(AwViewHostMsg_DocumentHasImagesResponse, | 82 IPC_MESSAGE_ROUTED2(AwViewHostMsg_DocumentHasImagesResponse, |
| 83 int, /* id */ | 83 int, /* id */ |
| 84 bool /* has_images */) | 84 bool /* has_images */) |
| 85 | 85 |
| 86 // Response to AwViewMsg_DoHitTest. | 86 // Response to AwViewMsg_DoHitTest. |
| 87 IPC_MESSAGE_ROUTED1(AwViewHostMsg_UpdateHitTestData, | 87 IPC_MESSAGE_ROUTED1(AwViewHostMsg_UpdateHitTestData, |
| 88 android_webview::AwHitTestData) | 88 android_webview::AwHitTestData) |
| 89 | 89 |
| 90 // Sent whenever the page scale factor (as seen by RenderView) is changed. |
| 91 IPC_MESSAGE_ROUTED1(AwViewHostMsg_PageScaleFactorChanged, |
| 92 float /* page_scale_factor */) |
| 93 |
| 90 // Notification that a new picture becomes available. It is only sent if | 94 // Notification that a new picture becomes available. It is only sent if |
| 91 // AwViewMsg_EnableCapturePictureCallback was previously enabled. | 95 // AwViewMsg_EnableCapturePictureCallback was previously enabled. |
| 92 IPC_MESSAGE_ROUTED0(AwViewHostMsg_PictureUpdated) | 96 IPC_MESSAGE_ROUTED0(AwViewHostMsg_PictureUpdated) |
| 93 | 97 |
| 94 // Sent by the renderer when accelerated compositing is enabled, allowing the | 98 // Sent by the renderer when accelerated compositing is enabled, allowing the |
| 95 // browser to perform synchronous input event filtering. | 99 // browser to perform synchronous input event filtering. |
| 96 IPC_MESSAGE_ROUTED1(AwViewHostMsg_DidActivateAcceleratedCompositing, | 100 IPC_MESSAGE_ROUTED1(AwViewHostMsg_DidActivateAcceleratedCompositing, |
| 97 int /* input_handler_id */) | 101 int /* input_handler_id */) |
| 98 | 102 |
| 99 | 103 |
| OLD | NEW |