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

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

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Rebased again Created 3 years, 5 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
« no previous file with comments | « content/common/gin_java_bridge_messages.h ('k') | content/common/media/aec_dump_messages.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #ifndef CONTENT_COMMON_INPUT_MESSAGES_H_
6 #define CONTENT_COMMON_INPUT_MESSAGES_H_
7
5 // IPC messages for input events and other messages that require processing in 8 // IPC messages for input events and other messages that require processing in
6 // order relative to input events. 9 // order relative to input events.
7 // Multiply-included message file, hence no include guard. 10 // Multiply-included message file, hence no include guard.
8 11
9 #include "base/strings/string16.h" 12 #include "base/strings/string16.h"
10 #include "build/build_config.h" 13 #include "build/build_config.h"
11 #include "cc/input/touch_action.h" 14 #include "cc/input/touch_action.h"
12 #include "content/common/content_export.h" 15 #include "content/common/content_export.h"
13 #include "content/common/content_param_traits.h" 16 #include "content/common/content_param_traits.h"
14 #include "content/common/edit_command.h" 17 #include "content/common/edit_command.h"
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 // This IPC message sends the character bounds after every composition change 362 // This IPC message sends the character bounds after every composition change
360 // to always have correct bound info. 363 // to always have correct bound info.
361 IPC_MESSAGE_ROUTED2(InputHostMsg_ImeCompositionRangeChanged, 364 IPC_MESSAGE_ROUTED2(InputHostMsg_ImeCompositionRangeChanged,
362 gfx::Range /* composition range */, 365 gfx::Range /* composition range */,
363 std::vector<gfx::Rect> /* character bounds */) 366 std::vector<gfx::Rect> /* character bounds */)
364 367
365 // Adding a new message? Stick to the sort order above: first platform 368 // Adding a new message? Stick to the sort order above: first platform
366 // independent InputMsg, then ifdefs for platform specific InputMsg, then 369 // independent InputMsg, then ifdefs for platform specific InputMsg, then
367 // platform independent InputHostMsg, then ifdefs for platform specific 370 // platform independent InputHostMsg, then ifdefs for platform specific
368 // InputHostMsg. 371 // InputHostMsg.
372
373 #endif // CONTENT_COMMON_INPUT_MESSAGES_H_
OLDNEW
« no previous file with comments | « content/common/gin_java_bridge_messages.h ('k') | content/common/media/aec_dump_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698