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

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

Issue 10962011: Allow tap gestures to open the IME on Android. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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 "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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 IPC_STRUCT_MEMBER(int, selection_end) 452 IPC_STRUCT_MEMBER(int, selection_end)
453 453
454 // The start position of the current composition, or -1 if there is none 454 // The start position of the current composition, or -1 if there is none
455 IPC_STRUCT_MEMBER(int, composition_start) 455 IPC_STRUCT_MEMBER(int, composition_start)
456 456
457 // The end position of the current composition, or -1 if there is none 457 // The end position of the current composition, or -1 if there is none
458 IPC_STRUCT_MEMBER(int, composition_end) 458 IPC_STRUCT_MEMBER(int, composition_end)
459 459
460 // Whether or not inline composition can be performed for the current input. 460 // Whether or not inline composition can be performed for the current input.
461 IPC_STRUCT_MEMBER(bool, can_compose_inline) 461 IPC_STRUCT_MEMBER(bool, can_compose_inline)
462
463 // Whether or not the IME should be shown as a result of this update. Even if
464 // true, the IME will only be shown if the type is appropriate (e.g. not
465 // TEXT_INPUT_TYPE_NONE).
466 IPC_STRUCT_MEMBER(bool, show_ime_if_needed)
462 IPC_STRUCT_END() 467 IPC_STRUCT_END()
463 468
464 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params) 469 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params)
465 // URL for the worker script. 470 // URL for the worker script.
466 IPC_STRUCT_MEMBER(GURL, url) 471 IPC_STRUCT_MEMBER(GURL, url)
467 472
468 // Name for a SharedWorker, otherwise empty string. 473 // Name for a SharedWorker, otherwise empty string.
469 IPC_STRUCT_MEMBER(string16, name) 474 IPC_STRUCT_MEMBER(string16, name)
470 475
471 // The ID of the parent document (unique within parent renderer). 476 // The ID of the parent document (unique within parent renderer).
(...skipping 1985 matching lines...) Expand 10 before | Expand all | Expand 10 after
2457 2462
2458 // Perform a seek. 2463 // Perform a seek.
2459 IPC_MESSAGE_ROUTED2(ViewHostMsg_MediaPlayerSeek, 2464 IPC_MESSAGE_ROUTED2(ViewHostMsg_MediaPlayerSeek,
2460 int /* player_id */, 2465 int /* player_id */,
2461 base::TimeDelta /* time */) 2466 base::TimeDelta /* time */)
2462 2467
2463 // Start the player for playback. 2468 // Start the player for playback.
2464 IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart, 2469 IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart,
2465 int /* player_id */) 2470 int /* player_id */)
2466 #endif 2471 #endif
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_android.cc ('k') | content/renderer/render_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698