| 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 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 856 IPC_MESSAGE_ROUTED0(ViewMsg_CopyToFindPboard) | 856 IPC_MESSAGE_ROUTED0(ViewMsg_CopyToFindPboard) |
| 857 #endif | 857 #endif |
| 858 IPC_MESSAGE_ROUTED0(ViewMsg_Paste) | 858 IPC_MESSAGE_ROUTED0(ViewMsg_Paste) |
| 859 IPC_MESSAGE_ROUTED0(ViewMsg_PasteAndMatchStyle) | 859 IPC_MESSAGE_ROUTED0(ViewMsg_PasteAndMatchStyle) |
| 860 // Replaces the selected region or a word around the cursor with the | 860 // Replaces the selected region or a word around the cursor with the |
| 861 // specified string. | 861 // specified string. |
| 862 IPC_MESSAGE_ROUTED1(ViewMsg_Replace, | 862 IPC_MESSAGE_ROUTED1(ViewMsg_Replace, |
| 863 string16) | 863 string16) |
| 864 IPC_MESSAGE_ROUTED0(ViewMsg_Delete) | 864 IPC_MESSAGE_ROUTED0(ViewMsg_Delete) |
| 865 IPC_MESSAGE_ROUTED0(ViewMsg_SelectAll) | 865 IPC_MESSAGE_ROUTED0(ViewMsg_SelectAll) |
| 866 IPC_MESSAGE_ROUTED0(ViewMsg_TextChecking) |
| 866 | 867 |
| 867 // Requests the renderer to select the region between two points. | 868 // Requests the renderer to select the region between two points. |
| 868 IPC_MESSAGE_ROUTED2(ViewMsg_SelectRange, | 869 IPC_MESSAGE_ROUTED2(ViewMsg_SelectRange, |
| 869 gfx::Point /* start */, | 870 gfx::Point /* start */, |
| 870 gfx::Point /* end */) | 871 gfx::Point /* end */) |
| 871 | 872 |
| 872 // Copies the image at location x, y to the clipboard (if there indeed is an | 873 // Copies the image at location x, y to the clipboard (if there indeed is an |
| 873 // image at that location). | 874 // image at that location). |
| 874 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt, | 875 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt, |
| 875 int /* x */, | 876 int /* x */, |
| (...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1992 media::MediaLogEvent /* event */) | 1993 media::MediaLogEvent /* event */) |
| 1993 | 1994 |
| 1994 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1995 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
| 1995 // being sent back. | 1996 // being sent back. |
| 1996 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1997 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
| 1997 | 1998 |
| 1998 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1999 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
| 1999 // whenever the mouse is unlocked (which may or may not be caused by | 2000 // whenever the mouse is unlocked (which may or may not be caused by |
| 2000 // ViewHostMsg_UnlockMouse). | 2001 // ViewHostMsg_UnlockMouse). |
| 2001 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 2002 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
| OLD | NEW |