| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |