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

Side by Side Diff: content/common/browser_plugin/browser_plugin_messages.h

Issue 1254883006: Bubble scroll events from WebView guest to embedder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Complete test. Created 5 years, 4 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
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 message header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/process/process.h" 10 #include "base/process/process.h"
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 210
211 // Sends text to be displayed in tooltip. 211 // Sends text to be displayed in tooltip.
212 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetTooltipText, 212 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetTooltipText,
213 int /* browser_plugin_instance_id */, 213 int /* browser_plugin_instance_id */,
214 base::string16 /* tooltip_text */) 214 base::string16 /* tooltip_text */)
215 215
216 // Acknowledge that we presented an ubercomp frame. 216 // Acknowledge that we presented an ubercomp frame.
217 IPC_MESSAGE_CONTROL2(BrowserPluginHostMsg_CompositorFrameSwappedACK, 217 IPC_MESSAGE_CONTROL2(BrowserPluginHostMsg_CompositorFrameSwappedACK,
218 int /* browser_plugin_instance_id */, 218 int /* browser_plugin_instance_id */,
219 FrameHostMsg_CompositorFrameSwappedACK_Params /* params */) 219 FrameHostMsg_CompositorFrameSwappedACK_Params /* params */)
220
221 // Acknowledge that we have acked a scrollevent.
222 // Note: This message is *not* browserplugin specific.
223 IPC_MESSAGE_CONTROL1(BrowserPluginMsg_SignalScrollCompletionEvent,
224 bool /* handled */)
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_widget_host_view_guest.cc ('k') | content/renderer/browser_plugin/browser_plugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698