| OLD | NEW | 
|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/common_param_traits.h" | 10 #include "content/common/common_param_traits.h" | 
| (...skipping 944 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 955 | 955 | 
| 956 // This message sends a string being composed with an input method. | 956 // This message sends a string being composed with an input method. | 
| 957 IPC_MESSAGE_ROUTED4( | 957 IPC_MESSAGE_ROUTED4( | 
| 958     ViewMsg_ImeSetComposition, | 958     ViewMsg_ImeSetComposition, | 
| 959     string16, /* text */ | 959     string16, /* text */ | 
| 960     std::vector<WebKit::WebCompositionUnderline>, /* underlines */ | 960     std::vector<WebKit::WebCompositionUnderline>, /* underlines */ | 
| 961     int, /* selectiont_start */ | 961     int, /* selectiont_start */ | 
| 962     int /* selection_end */) | 962     int /* selection_end */) | 
| 963 | 963 | 
| 964 // This message confirms an ongoing composition. | 964 // This message confirms an ongoing composition. | 
| 965 IPC_MESSAGE_ROUTED1(ViewMsg_ImeConfirmComposition, | 965 IPC_MESSAGE_ROUTED2(ViewMsg_ImeConfirmComposition, | 
| 966                     string16 /* text */) | 966                     string16 /* text */, | 
|  | 967                     ui::Range /* replacement_range */) | 
| 967 | 968 | 
| 968 // Used to notify the render-view that we have received a target URL. Used | 969 // Used to notify the render-view that we have received a target URL. Used | 
| 969 // to prevent target URLs spamming the browser. | 970 // to prevent target URLs spamming the browser. | 
| 970 IPC_MESSAGE_ROUTED0(ViewMsg_UpdateTargetURL_ACK) | 971 IPC_MESSAGE_ROUTED0(ViewMsg_UpdateTargetURL_ACK) | 
| 971 | 972 | 
| 972 | 973 | 
| 973 // Sets the alternate error page URL (link doctor) for the renderer process. | 974 // Sets the alternate error page URL (link doctor) for the renderer process. | 
| 974 IPC_MESSAGE_ROUTED1(ViewMsg_SetAltErrorPageURL, | 975 IPC_MESSAGE_ROUTED1(ViewMsg_SetAltErrorPageURL, | 
| 975                     GURL) | 976                     GURL) | 
| 976 | 977 | 
| (...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1935 | 1936 | 
| 1936 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1937 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 
| 1937 // being sent back. | 1938 // being sent back. | 
| 1938 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1939 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 
| 1939 | 1940 | 
| 1940 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1941 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 
| 1941 // whenever the mouse is unlocked (which may or may not be caused by | 1942 // whenever the mouse is unlocked (which may or may not be caused by | 
| 1942 // ViewHostMsg_UnlockMouse). | 1943 // ViewHostMsg_UnlockMouse). | 
| 1943 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1944 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 
| 1944 | 1945 | 
| OLD | NEW | 
|---|