Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Side by Side Diff: content/common/view_messages.h

Issue 8907016: Spellchecker should recheck after changing language. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Patch Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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)
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host.cc ('k') | content/renderer/render_view_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698