Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Side by Side Diff: android_webview/common/render_view_messages.h

Issue 12567020: [android] Resize the android_webview if it's 0x0 initially. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: don't re-layout while pinch-zooming Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 86
87 // Response to AwViewMsg_DocumentHasImages request. 87 // Response to AwViewMsg_DocumentHasImages request.
88 IPC_MESSAGE_ROUTED2(AwViewHostMsg_DocumentHasImagesResponse, 88 IPC_MESSAGE_ROUTED2(AwViewHostMsg_DocumentHasImagesResponse,
89 int, /* id */ 89 int, /* id */
90 bool /* has_images */) 90 bool /* has_images */)
91 91
92 // Response to AwViewMsg_DoHitTest. 92 // Response to AwViewMsg_DoHitTest.
93 IPC_MESSAGE_ROUTED1(AwViewHostMsg_UpdateHitTestData, 93 IPC_MESSAGE_ROUTED1(AwViewHostMsg_UpdateHitTestData,
94 android_webview::AwHitTestData) 94 android_webview::AwHitTestData)
95 95
96 // Sent whenever the page scale factor (as seen by RenderView) is changed.
97 IPC_MESSAGE_ROUTED1(AwViewHostMsg_PageScaleFactorChanged,
98 float /* page_scale_factor */)
99
96 // Notification that a new picture becomes available. It is only sent if 100 // Notification that a new picture becomes available. It is only sent if
97 // AwViewMsg_EnableCapturePictureCallback was previously enabled. 101 // AwViewMsg_EnableCapturePictureCallback was previously enabled.
98 IPC_MESSAGE_ROUTED0(AwViewHostMsg_PictureUpdated) 102 IPC_MESSAGE_ROUTED0(AwViewHostMsg_PictureUpdated)
99 103
100 // Sent by the renderer when accelerated compositing is enabled, allowing the 104 // Sent by the renderer when accelerated compositing is enabled, allowing the
101 // browser to perform synchronous input event filtering. 105 // browser to perform synchronous input event filtering.
102 IPC_MESSAGE_ROUTED1(AwViewHostMsg_DidActivateAcceleratedCompositing, 106 IPC_MESSAGE_ROUTED1(AwViewHostMsg_DidActivateAcceleratedCompositing,
103 int /* input_handler_id */) 107 int /* input_handler_id */)
104 108
105 109
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698