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 "base/string16.h" | 10 #include "base/string16.h" |
(...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
923 IPC_MESSAGE_ROUTED0(ViewMsg_Copy) | 923 IPC_MESSAGE_ROUTED0(ViewMsg_Copy) |
924 #if defined(OS_MACOSX) | 924 #if defined(OS_MACOSX) |
925 IPC_MESSAGE_ROUTED0(ViewMsg_CopyToFindPboard) | 925 IPC_MESSAGE_ROUTED0(ViewMsg_CopyToFindPboard) |
926 #endif | 926 #endif |
927 IPC_MESSAGE_ROUTED0(ViewMsg_Paste) | 927 IPC_MESSAGE_ROUTED0(ViewMsg_Paste) |
928 IPC_MESSAGE_ROUTED0(ViewMsg_PasteAndMatchStyle) | 928 IPC_MESSAGE_ROUTED0(ViewMsg_PasteAndMatchStyle) |
929 // Replaces the selected region or a word around the cursor with the | 929 // Replaces the selected region or a word around the cursor with the |
930 // specified string. | 930 // specified string. |
931 IPC_MESSAGE_ROUTED1(ViewMsg_Replace, | 931 IPC_MESSAGE_ROUTED1(ViewMsg_Replace, |
932 string16) | 932 string16) |
| 933 // Replaces the misspelling in the selected region with the specified string. |
| 934 IPC_MESSAGE_ROUTED1(ViewMsg_ReplaceMisspelling, |
| 935 string16) |
933 IPC_MESSAGE_ROUTED0(ViewMsg_Delete) | 936 IPC_MESSAGE_ROUTED0(ViewMsg_Delete) |
934 IPC_MESSAGE_ROUTED0(ViewMsg_SelectAll) | 937 IPC_MESSAGE_ROUTED0(ViewMsg_SelectAll) |
935 | 938 |
936 // Replaces a date time input field. | 939 // Replaces a date time input field. |
937 IPC_MESSAGE_ROUTED1(ViewMsg_ReplaceDateTime, | 940 IPC_MESSAGE_ROUTED1(ViewMsg_ReplaceDateTime, |
938 ViewHostMsg_DateTimeDialogValue_Params /* value */) | 941 ViewHostMsg_DateTimeDialogValue_Params /* value */) |
939 | 942 |
940 IPC_MESSAGE_ROUTED0(ViewMsg_Unselect) | 943 IPC_MESSAGE_ROUTED0(ViewMsg_Unselect) |
941 | 944 |
942 // Requests the renderer to select the region between two points. | 945 // Requests the renderer to select the region between two points. |
(...skipping 1454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2397 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 2400 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
2398 // for details. | 2401 // for details. |
2399 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 2402 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
2400 LOGFONT /* font_data */, | 2403 LOGFONT /* font_data */, |
2401 string16 /* characters */) | 2404 string16 /* characters */) |
2402 #endif | 2405 #endif |
2403 | 2406 |
2404 // Notifies the browser that the frame with the given id was detached. | 2407 // Notifies the browser that the frame with the given id was detached. |
2405 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameDetached, | 2408 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameDetached, |
2406 int64 /* frame_id */) | 2409 int64 /* frame_id */) |
OLD | NEW |