OLD | NEW |
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 dev/ppb_find_dev.idl modified Tue Oct 4 08:34:10 2011. */ | 6 /* From dev/ppb_find_dev.idl modified Wed Oct 5 14:06:02 2011. */ |
7 | 7 |
8 #ifndef PPAPI_C_DEV_PPB_FIND_DEV_H_ | 8 #ifndef PPAPI_C_DEV_PPB_FIND_DEV_H_ |
9 #define PPAPI_C_DEV_PPB_FIND_DEV_H_ | 9 #define PPAPI_C_DEV_PPB_FIND_DEV_H_ |
10 | 10 |
11 #include "ppapi/c/pp_bool.h" | 11 #include "ppapi/c/pp_bool.h" |
12 #include "ppapi/c/pp_instance.h" | 12 #include "ppapi/c/pp_instance.h" |
13 #include "ppapi/c/pp_macros.h" | 13 #include "ppapi/c/pp_macros.h" |
14 #include "ppapi/c/pp_stdint.h" | 14 #include "ppapi/c/pp_stdint.h" |
15 | 15 |
16 #define PPB_FIND_DEV_INTERFACE_0_3 "PPB_Find(Dev);0.3" | 16 #define PPB_FIND_DEV_INTERFACE_0_3 "PPB_Find(Dev);0.3" |
17 #define PPB_FIND_DEV_INTERFACE PPB_FIND_DEV_INTERFACE_0_3 | 17 #define PPB_FIND_DEV_INTERFACE PPB_FIND_DEV_INTERFACE_0_3 |
18 | 18 |
19 /** | 19 /** |
20 * @file | 20 * @file |
21 * This file defines the <code>PPB_Find_Dev</code> interface. | 21 * This file defines the <code>PPB_Find_Dev</code> interface. |
22 */ | 22 */ |
23 | 23 |
24 | 24 |
25 /** | 25 /** |
26 * @addtogroup Interfaces | 26 * @addtogroup Interfaces |
27 * @{ | 27 * @{ |
28 */ | 28 */ |
29 struct PPB_Find_Dev { | 29 struct PPB_Find_Dev_0_3 { |
30 /** | 30 /** |
31 * Updates the number of find results for the current search term. If | 31 * Updates the number of find results for the current search term. If |
32 * there are no matches 0 should be passed in. Only when the plugin has | 32 * there are no matches 0 should be passed in. Only when the plugin has |
33 * finished searching should it pass in the final count with final_result set | 33 * finished searching should it pass in the final count with final_result set |
34 * to PP_TRUE. | 34 * to PP_TRUE. |
35 */ | 35 */ |
36 void (*NumberOfFindResultsChanged)(PP_Instance instance, | 36 void (*NumberOfFindResultsChanged)(PP_Instance instance, |
37 int32_t total, | 37 int32_t total, |
38 PP_Bool final_result); | 38 PP_Bool final_result); |
39 /** | 39 /** |
40 * Updates the index of the currently selected search item. | 40 * Updates the index of the currently selected search item. |
41 */ | 41 */ |
42 void (*SelectedFindResultChanged)(PP_Instance instance, int32_t index); | 42 void (*SelectedFindResultChanged)(PP_Instance instance, int32_t index); |
43 }; | 43 }; |
| 44 |
| 45 typedef struct PPB_Find_Dev_0_3 PPB_Find_Dev; |
44 /** | 46 /** |
45 * @} | 47 * @} |
46 */ | 48 */ |
47 | 49 |
48 #endif /* PPAPI_C_DEV_PPB_FIND_DEV_H_ */ | 50 #endif /* PPAPI_C_DEV_PPB_FIND_DEV_H_ */ |
49 | 51 |
OLD | NEW |