| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 // recalculated by WebKit. | 62 // recalculated by WebKit. |
| 63 IPC_MESSAGE_ROUTED0(AwViewMsg_ResetScrollAndScaleState) | 63 IPC_MESSAGE_ROUTED0(AwViewMsg_ResetScrollAndScaleState) |
| 64 | 64 |
| 65 // Sets the initial page scale. This overrides initial scale set by | 65 // Sets the initial page scale. This overrides initial scale set by |
| 66 // the meta viewport tag. | 66 // the meta viewport tag. |
| 67 IPC_MESSAGE_ROUTED1(AwViewMsg_SetInitialPageScale, | 67 IPC_MESSAGE_ROUTED1(AwViewMsg_SetInitialPageScale, |
| 68 double /* page_scale_factor */) | 68 double /* page_scale_factor */) |
| 69 | 69 |
| 70 // Sets the base background color for this view. | 70 // Sets the base background color for this view. |
| 71 IPC_MESSAGE_ROUTED1(AwViewMsg_SetBackgroundColor, | 71 IPC_MESSAGE_ROUTED1(AwViewMsg_SetBackgroundColor, |
| 72 SkColor); | 72 SkColor) |
| 73 | 73 |
| 74 IPC_MESSAGE_CONTROL1(AwViewMsg_SetJsOnlineProperty, | 74 IPC_MESSAGE_CONTROL1(AwViewMsg_SetJsOnlineProperty, |
| 75 bool /* network_up */) | 75 bool /* network_up */) |
| 76 | 76 |
| 77 // Enables the sending of content size change notifications by the renderer. |
| 78 IPC_MESSAGE_ROUTED0(AwViewMsg_EnableContentsSizeNotifications) |
| 79 |
| 77 //----------------------------------------------------------------------------- | 80 //----------------------------------------------------------------------------- |
| 78 // RenderView messages | 81 // RenderView messages |
| 79 // These are messages sent from the renderer to the browser process. | 82 // These are messages sent from the renderer to the browser process. |
| 80 | 83 |
| 81 // Response to AwViewMsg_DocumentHasImages request. | 84 // Response to AwViewMsg_DocumentHasImages request. |
| 82 IPC_MESSAGE_ROUTED2(AwViewHostMsg_DocumentHasImagesResponse, | 85 IPC_MESSAGE_ROUTED2(AwViewHostMsg_DocumentHasImagesResponse, |
| 83 int, /* id */ | 86 int, /* id */ |
| 84 bool /* has_images */) | 87 bool /* has_images */) |
| 85 | 88 |
| 86 // Response to AwViewMsg_DoHitTest. | 89 // Response to AwViewMsg_DoHitTest. |
| 87 IPC_MESSAGE_ROUTED1(AwViewHostMsg_UpdateHitTestData, | 90 IPC_MESSAGE_ROUTED1(AwViewHostMsg_UpdateHitTestData, |
| 88 android_webview::AwHitTestData) | 91 android_webview::AwHitTestData) |
| 89 | 92 |
| 90 // Sent whenever the page scale factor (as seen by RenderView) is changed. | 93 // Sent whenever the page scale factor (as seen by RenderView) is changed. |
| 91 IPC_MESSAGE_ROUTED1(AwViewHostMsg_PageScaleFactorChanged, | 94 IPC_MESSAGE_ROUTED1(AwViewHostMsg_PageScaleFactorChanged, |
| 92 float /* page_scale_factor */) | 95 float /* page_scale_factor */) |
| 96 |
| 97 // Sent whenever the contents size (as seen by RenderView) is changed. |
| 98 IPC_MESSAGE_ROUTED1(AwViewHostMsg_OnContentsSizeChanged, |
| 99 gfx::Size /* contents_size */) |
| OLD | NEW |