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

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

Issue 2703643004: [TTS] Add an ACK message to SelectWordAroundCaret. (Closed)
Patch Set: Update the other test in ContextualSearchTapEventTest.java to know about the ACK. Created 3 years, 7 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
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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after
862 IPC_MESSAGE_ROUTED1(ViewHostMsg_MoveValidationMessage, 862 IPC_MESSAGE_ROUTED1(ViewHostMsg_MoveValidationMessage,
863 gfx::Rect /* anchor rectangle in root view coordinate */) 863 gfx::Rect /* anchor rectangle in root view coordinate */)
864 864
865 // Sent once a paint happens after the first non empty layout. In other words, 865 // Sent once a paint happens after the first non empty layout. In other words,
866 // after the frame widget has painted something. 866 // after the frame widget has painted something.
867 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidFirstVisuallyNonEmptyPaint) 867 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidFirstVisuallyNonEmptyPaint)
868 868
869 // Sent in reply to ViewMsg_WaitForNextFrameForTests. 869 // Sent in reply to ViewMsg_WaitForNextFrameForTests.
870 IPC_MESSAGE_ROUTED0(ViewHostMsg_WaitForNextFrameForTests_ACK) 870 IPC_MESSAGE_ROUTED0(ViewHostMsg_WaitForNextFrameForTests_ACK)
871 871
872 // Acknowledges that a SelectWordAroundCaret completed with the specified
873 // result and adjustments to the selection offsets.
874 IPC_MESSAGE_ROUTED3(ViewHostMsg_SelectWordAroundCaretAck,
875 bool /* did_select */,
876 int /* start_adjust */,
877 int /* end_adjust */)
878
872 #if defined(OS_ANDROID) 879 #if defined(OS_ANDROID)
873 // Notifies that an unhandled tap has occurred at the specified x,y position 880 // Notifies that an unhandled tap has occurred at the specified x,y position
874 // and that the UI may need to be triggered. 881 // and that the UI may need to be triggered.
875 IPC_MESSAGE_ROUTED2(ViewHostMsg_ShowUnhandledTapUIIfNeeded, 882 IPC_MESSAGE_ROUTED2(ViewHostMsg_ShowUnhandledTapUIIfNeeded,
876 int /* x */, 883 int /* x */,
877 int /* y */) 884 int /* y */)
878 885
879 #elif defined(OS_MACOSX) 886 #elif defined(OS_MACOSX)
880 // Receives content of a web page as plain text. 887 // Receives content of a web page as plain text.
881 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) 888 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string)
882 #endif 889 #endif
883 890
884 // Adding a new message? Stick to the sort order above: first platform 891 // Adding a new message? Stick to the sort order above: first platform
885 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 892 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
886 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 893 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698