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

Side by Side Diff: ppapi/api/ppb_input_event.idl

Issue 13220002: [PPAPI] Fix a bunch of spelling mistakes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/api/ppb_graphics_3d.idl ('k') | ppapi/api/ppb_message_loop.idl » ('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) 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 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 {
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 * 883 *
884 * @param[in] index The index. 884 * @param[in] index The index.
885 * 885 *
886 * @return A <code>PP_TouchPoint</code> representing the touch-point. 886 * @return A <code>PP_TouchPoint</code> representing the touch-point.
887 */ 887 */
888 PP_TouchPoint GetTouchByIndex([in] PP_Resource resource, 888 PP_TouchPoint GetTouchByIndex([in] PP_Resource resource,
889 [in] PP_TouchListType list, 889 [in] PP_TouchListType list,
890 [in] uint32_t index); 890 [in] uint32_t index);
891 891
892 /** 892 /**
893 * Returns the touch-point with the spcified touch-id in the specified list. 893 * Returns the touch-point with the specified touch-id in the specified list.
894 * 894 *
895 * @param[in] resource A <code>PP_Resource</code> corresponding to a touch 895 * @param[in] resource A <code>PP_Resource</code> corresponding to a touch
896 * event. 896 * event.
897 * 897 *
898 * @param[in] list The list. 898 * @param[in] list The list.
899 * 899 *
900 * @param[in] touch_id The id of the touch-point. 900 * @param[in] touch_id The id of the touch-point.
901 * 901 *
902 * @return A <code>PP_TouchPoint</code> representing the touch-point. 902 * @return A <code>PP_TouchPoint</code> representing the touch-point.
903 */ 903 */
904 PP_TouchPoint GetTouchById([in] PP_Resource resource, 904 PP_TouchPoint GetTouchById([in] PP_Resource resource,
905 [in] PP_TouchListType list, 905 [in] PP_TouchListType list,
906 [in] uint32_t touch_id); 906 [in] uint32_t touch_id);
907 }; 907 };
OLDNEW
« no previous file with comments | « ppapi/api/ppb_graphics_3d.idl ('k') | ppapi/api/ppb_message_loop.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698