OLD | NEW |
1 /* Copyright (c) 2011 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 | 5 |
6 /** | 6 /** |
7 * This file defines the Input Event interfaces. | 7 * This file defines the Input Event interfaces. |
8 */ | 8 */ |
9 | 9 |
10 label Chrome { | 10 label Chrome { |
11 M13 = 1.0, | 11 M13 = 1.0, |
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
722 * @param[in] character_event A <code>PP_Resource</code> corresponding to a | 722 * @param[in] character_event A <code>PP_Resource</code> corresponding to a |
723 * keyboard event. | 723 * keyboard event. |
724 * | 724 * |
725 * @return A string var representing a single typed character for character | 725 * @return A string var representing a single typed character for character |
726 * input events. For non-character input events the return value will be an | 726 * input events. For non-character input events the return value will be an |
727 * undefined var. | 727 * undefined var. |
728 */ | 728 */ |
729 PP_Var GetCharacterText([in] PP_Resource character_event); | 729 PP_Var GetCharacterText([in] PP_Resource character_event); |
730 }; | 730 }; |
731 | 731 |
OLD | NEW |