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

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

Issue 2309983002: Allow selection change update before beginBatchEdit (Closed)
Patch Set: polish up a bit Created 4 years, 3 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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 IPC_STRUCT_TRAITS_MEMBER(mode) 276 IPC_STRUCT_TRAITS_MEMBER(mode)
277 IPC_STRUCT_TRAITS_MEMBER(flags) 277 IPC_STRUCT_TRAITS_MEMBER(flags)
278 IPC_STRUCT_TRAITS_MEMBER(value) 278 IPC_STRUCT_TRAITS_MEMBER(value)
279 IPC_STRUCT_TRAITS_MEMBER(selection_start) 279 IPC_STRUCT_TRAITS_MEMBER(selection_start)
280 IPC_STRUCT_TRAITS_MEMBER(selection_end) 280 IPC_STRUCT_TRAITS_MEMBER(selection_end)
281 IPC_STRUCT_TRAITS_MEMBER(composition_start) 281 IPC_STRUCT_TRAITS_MEMBER(composition_start)
282 IPC_STRUCT_TRAITS_MEMBER(composition_end) 282 IPC_STRUCT_TRAITS_MEMBER(composition_end)
283 IPC_STRUCT_TRAITS_MEMBER(can_compose_inline) 283 IPC_STRUCT_TRAITS_MEMBER(can_compose_inline)
284 IPC_STRUCT_TRAITS_MEMBER(show_ime_if_needed) 284 IPC_STRUCT_TRAITS_MEMBER(show_ime_if_needed)
285 IPC_STRUCT_TRAITS_MEMBER(is_non_ime_change) 285 IPC_STRUCT_TRAITS_MEMBER(is_non_ime_change)
286 IPC_STRUCT_TRAITS_MEMBER(batch_edit)
286 IPC_STRUCT_TRAITS_END() 287 IPC_STRUCT_TRAITS_END()
287 288
288 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWindow_Params) 289 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWindow_Params)
289 // Routing ID of the view initiating the open. 290 // Routing ID of the view initiating the open.
290 IPC_STRUCT_MEMBER(int, opener_id) 291 IPC_STRUCT_MEMBER(int, opener_id)
291 292
292 // True if this open request came in the context of a user gesture. 293 // True if this open request came in the context of a user gesture.
293 IPC_STRUCT_MEMBER(bool, user_gesture) 294 IPC_STRUCT_MEMBER(bool, user_gesture)
294 295
295 // Type of window requested. 296 // Type of window requested.
(...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after
1166 int /* y */) 1167 int /* y */)
1167 1168
1168 #elif defined(OS_MACOSX) 1169 #elif defined(OS_MACOSX)
1169 // Receives content of a web page as plain text. 1170 // Receives content of a web page as plain text.
1170 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) 1171 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string)
1171 #endif 1172 #endif
1172 1173
1173 // Adding a new message? Stick to the sort order above: first platform 1174 // Adding a new message? Stick to the sort order above: first platform
1174 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 1175 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
1175 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 1176 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698