Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 /* From dev/ppp_printing_dev.idl modified Wed Jun 13 09:20:40 2012. */ | 6 /* From dev/ppp_printing_dev.idl modified Thu Jul 19 16:15:23 2012. */ |
| 7 | 7 |
| 8 #ifndef PPAPI_C_DEV_PPP_PRINTING_DEV_H_ | 8 #ifndef PPAPI_C_DEV_PPP_PRINTING_DEV_H_ |
| 9 #define PPAPI_C_DEV_PPP_PRINTING_DEV_H_ | 9 #define PPAPI_C_DEV_PPP_PRINTING_DEV_H_ |
| 10 | 10 |
| 11 #include "ppapi/c/dev/pp_print_settings_dev.h" | 11 #include "ppapi/c/dev/pp_print_settings_dev.h" |
| 12 #include "ppapi/c/pp_bool.h" | 12 #include "ppapi/c/pp_bool.h" |
| 13 #include "ppapi/c/pp_instance.h" | 13 #include "ppapi/c/pp_instance.h" |
| 14 #include "ppapi/c/pp_macros.h" | 14 #include "ppapi/c/pp_macros.h" |
| 15 #include "ppapi/c/pp_point.h" | 15 #include "ppapi/c/pp_point.h" |
| 16 #include "ppapi/c/pp_rect.h" | 16 #include "ppapi/c/pp_rect.h" |
| 17 #include "ppapi/c/pp_resource.h" | 17 #include "ppapi/c/pp_resource.h" |
| 18 #include "ppapi/c/pp_size.h" | 18 #include "ppapi/c/pp_size.h" |
| 19 #include "ppapi/c/pp_stdint.h" | 19 #include "ppapi/c/pp_stdint.h" |
| 20 | 20 |
| 21 #define PPP_PRINTING_DEV_INTERFACE_0_6 "PPP_Printing(Dev);0.6" | 21 #define PPP_PRINTING_DEV_INTERFACE_0_6 "PPP_Printing(Dev);0.6" |
| 22 #define PPP_PRINTING_DEV_INTERFACE PPP_PRINTING_DEV_INTERFACE_0_6 | 22 #define PPP_PRINTING_DEV_INTERFACE PPP_PRINTING_DEV_INTERFACE_0_6 |
|
dmichael (off chromium)
2012/07/23 18:20:09
Hmm, it looks like you didn't re-generate? I thoug
raymes
2012/07/24 00:37:08
Done.
| |
| 23 | 23 |
| 24 /** | 24 /** |
| 25 * @file | 25 * @file |
| 26 * Definition of the PPP_Printing interface. | 26 * Definition of the PPP_Printing interface. |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 | 29 |
| 30 /** | 30 /** |
| 31 * @addtogroup Structs | 31 * @addtogroup Structs |
| 32 * @{ | 32 * @{ |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 82 PP_Bool (*IsScalingDisabled)(PP_Instance instance); | 82 PP_Bool (*IsScalingDisabled)(PP_Instance instance); |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 typedef struct PPP_Printing_Dev_0_6 PPP_Printing_Dev; | 85 typedef struct PPP_Printing_Dev_0_6 PPP_Printing_Dev; |
| 86 /** | 86 /** |
| 87 * @} | 87 * @} |
| 88 */ | 88 */ |
| 89 | 89 |
| 90 #endif /* PPAPI_C_DEV_PPP_PRINTING_DEV_H_ */ | 90 #endif /* PPAPI_C_DEV_PPP_PRINTING_DEV_H_ */ |
| 91 | 91 |
| OLD | NEW |