| 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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include "base/process.h" | 8 #include "base/process.h" |
| 9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| (...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 949 IPC_MESSAGE_ROUTED3(ViewMsg_Find, | 949 IPC_MESSAGE_ROUTED3(ViewMsg_Find, |
| 950 int /* request_id */, | 950 int /* request_id */, |
| 951 string16 /* search_text */, | 951 string16 /* search_text */, |
| 952 WebKit::WebFindOptions) | 952 WebKit::WebFindOptions) |
| 953 | 953 |
| 954 // This message notifies the renderer that the user has closed the FindInPage | 954 // This message notifies the renderer that the user has closed the FindInPage |
| 955 // window (and what action to take regarding the selection). | 955 // window (and what action to take regarding the selection). |
| 956 IPC_MESSAGE_ROUTED1(ViewMsg_StopFinding, | 956 IPC_MESSAGE_ROUTED1(ViewMsg_StopFinding, |
| 957 content::StopFindAction /* action */) | 957 content::StopFindAction /* action */) |
| 958 | 958 |
| 959 // Used to notify the render-view that the browser has received a reply for | |
| 960 // the Find operation and is interested in receiving the next one. This is | |
| 961 // used to prevent the renderer from spamming the browser process with | |
| 962 // results. | |
| 963 IPC_MESSAGE_ROUTED0(ViewMsg_FindReplyACK) | |
| 964 | |
| 965 // These messages are typically generated from context menus and request the | 959 // These messages are typically generated from context menus and request the |
| 966 // renderer to apply the specified operation to the current selection. | 960 // renderer to apply the specified operation to the current selection. |
| 967 IPC_MESSAGE_ROUTED0(ViewMsg_Undo) | 961 IPC_MESSAGE_ROUTED0(ViewMsg_Undo) |
| 968 IPC_MESSAGE_ROUTED0(ViewMsg_Redo) | 962 IPC_MESSAGE_ROUTED0(ViewMsg_Redo) |
| 969 IPC_MESSAGE_ROUTED0(ViewMsg_Cut) | 963 IPC_MESSAGE_ROUTED0(ViewMsg_Cut) |
| 970 IPC_MESSAGE_ROUTED0(ViewMsg_Copy) | 964 IPC_MESSAGE_ROUTED0(ViewMsg_Copy) |
| 971 #if defined(OS_MACOSX) | 965 #if defined(OS_MACOSX) |
| 972 IPC_MESSAGE_ROUTED0(ViewMsg_CopyToFindPboard) | 966 IPC_MESSAGE_ROUTED0(ViewMsg_CopyToFindPboard) |
| 973 #endif | 967 #endif |
| 974 IPC_MESSAGE_ROUTED0(ViewMsg_Paste) | 968 IPC_MESSAGE_ROUTED0(ViewMsg_Paste) |
| (...skipping 1201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2176 // (according to the value of is_hung). The browser can give the user the | 2170 // (according to the value of is_hung). The browser can give the user the |
| 2177 // option of killing the plugin. | 2171 // option of killing the plugin. |
| 2178 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2172 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2179 int /* plugin_child_id */, | 2173 int /* plugin_child_id */, |
| 2180 FilePath /* path */, | 2174 FilePath /* path */, |
| 2181 bool /* is_hung */) | 2175 bool /* is_hung */) |
| 2182 | 2176 |
| 2183 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2177 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
| 2184 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2178 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
| 2185 int /* orientation */) | 2179 int /* orientation */) |
| OLD | NEW |