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

Side by Side Diff: ppapi/c/ppp_mouse_lock.h

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase for line-wrap. Created 8 years, 11 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/c/ppp_messaging.h ('k') | ppapi/c/private/ppb_file_ref_private.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) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 /* From ppp_mouse_lock.idl modified Wed Nov 9 12:07:33 2011. */ 6 /* From ppp_mouse_lock.idl modified Wed Dec 21 19:08:34 2011. */
7 7
8 #ifndef PPAPI_C_PPP_MOUSE_LOCK_H_ 8 #ifndef PPAPI_C_PPP_MOUSE_LOCK_H_
9 #define PPAPI_C_PPP_MOUSE_LOCK_H_ 9 #define PPAPI_C_PPP_MOUSE_LOCK_H_
10 10
11 #include "ppapi/c/pp_instance.h" 11 #include "ppapi/c/pp_instance.h"
12 #include "ppapi/c/pp_macros.h" 12 #include "ppapi/c/pp_macros.h"
13 #include "ppapi/c/pp_stdint.h" 13 #include "ppapi/c/pp_stdint.h"
14 14
15 #define PPP_MOUSELOCK_INTERFACE_1_0 "PPP_MouseLock;1.0" 15 #define PPP_MOUSELOCK_INTERFACE_1_0 "PPP_MouseLock;1.0"
16 #define PPP_MOUSELOCK_INTERFACE PPP_MOUSELOCK_INTERFACE_1_0 16 #define PPP_MOUSELOCK_INTERFACE PPP_MOUSELOCK_INTERFACE_1_0
17 17
18 /** 18 /**
19 * @file 19 * @file
20 * This file defines the <code>PPP_MouseLock</code> interface containing a 20 * This file defines the <code>PPP_MouseLock</code> interface containing a
21 * function that you must implement to receive mouse lock events from the 21 * function that you must implement to receive mouse lock events from the
22 * browser. 22 * browser.
23 */ 23 */
24 24
25 25
26 /** 26 /**
27 * @addtogroup Interfaces 27 * @addtogroup Interfaces
28 * @{ 28 * @{
29 */ 29 */
30 /** 30 /**
31 * The <code>PPP_MouseLock</code> interface contains a function that you must 31 * The <code>PPP_MouseLock</code> interface contains a function that you must
32 * implement to receive mouse lock events from the browser. 32 * implement to receive mouse lock events from the browser.
33 */ 33 */
34 struct PPP_MouseLock { 34 struct PPP_MouseLock_1_0 {
35 /** 35 /**
36 * MouseLockLost() is called when the instance loses the mouse lock, such as 36 * MouseLockLost() is called when the instance loses the mouse lock, such as
37 * when the user presses the ESC key. 37 * when the user presses the ESC key.
38 * 38 *
39 * @param[in] instance A <code>PP_Instance</code> identifying one instance 39 * @param[in] instance A <code>PP_Instance</code> identifying one instance
40 * of a module. 40 * of a module.
41 */ 41 */
42 void (*MouseLockLost)(PP_Instance instance); 42 void (*MouseLockLost)(PP_Instance instance);
43 }; 43 };
44
45 typedef struct PPP_MouseLock_1_0 PPP_MouseLock;
44 /** 46 /**
45 * @} 47 * @}
46 */ 48 */
47 49
48 #endif /* PPAPI_C_PPP_MOUSE_LOCK_H_ */ 50 #endif /* PPAPI_C_PPP_MOUSE_LOCK_H_ */
49 51
OLDNEW
« no previous file with comments | « ppapi/c/ppp_messaging.h ('k') | ppapi/c/private/ppb_file_ref_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698