| 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 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 Loading... |
| 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 */) |
| OLD | NEW |