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 * This test simply includes all the C headers to ensure they compile with a C | 5 * This test simply includes all the C headers to ensure they compile with a C |
6 * compiler. If it compiles, it passes. | 6 * compiler. If it compiles, it passes. |
7 */ | 7 */ |
8 #ifndef PPAPI_TESTS_ALL_C_INCLUDES_H_ | 8 #ifndef PPAPI_TESTS_ALL_C_INCLUDES_H_ |
9 #define PPAPI_TESTS_ALL_C_INCLUDES_H_ | 9 #define PPAPI_TESTS_ALL_C_INCLUDES_H_ |
10 | 10 |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 #include "ppapi/c/ppb_websocket.h" | 91 #include "ppapi/c/ppb_websocket.h" |
92 #include "ppapi/c/ppp.h" | 92 #include "ppapi/c/ppp.h" |
93 #include "ppapi/c/ppp_graphics_3d.h" | 93 #include "ppapi/c/ppp_graphics_3d.h" |
94 #include "ppapi/c/ppp_input_event.h" | 94 #include "ppapi/c/ppp_input_event.h" |
95 #include "ppapi/c/ppp_instance.h" | 95 #include "ppapi/c/ppp_instance.h" |
96 #include "ppapi/c/ppp_messaging.h" | 96 #include "ppapi/c/ppp_messaging.h" |
97 #include "ppapi/c/ppp_mouse_lock.h" | 97 #include "ppapi/c/ppp_mouse_lock.h" |
98 #include "ppapi/c/private/pp_private_font_charset.h" | 98 #include "ppapi/c/private/pp_private_font_charset.h" |
99 #include "ppapi/c/private/pp_video_frame_private.h" | 99 #include "ppapi/c/private/pp_video_frame_private.h" |
100 #include "ppapi/c/private/ppb_content_decryptor_private.h" | 100 #include "ppapi/c/private/ppb_content_decryptor_private.h" |
| 101 #include "ppapi/c/private/ppb_ext_crx_file_system_private.h" |
101 #include "ppapi/c/private/ppb_file_io_private.h" | 102 #include "ppapi/c/private/ppb_file_io_private.h" |
102 #include "ppapi/c/private/ppb_flash.h" | 103 #include "ppapi/c/private/ppb_flash.h" |
103 #include "ppapi/c/private/ppb_flash_clipboard.h" | 104 #include "ppapi/c/private/ppb_flash_clipboard.h" |
104 #include "ppapi/c/private/ppb_flash_font_file.h" | 105 #include "ppapi/c/private/ppb_flash_font_file.h" |
105 #include "ppapi/c/private/ppb_flash_menu.h" | 106 #include "ppapi/c/private/ppb_flash_menu.h" |
106 #include "ppapi/c/private/ppb_flash_message_loop.h" | 107 #include "ppapi/c/private/ppb_flash_message_loop.h" |
107 #include "ppapi/c/private/ppb_gpu_blacklist_private.h" | 108 #include "ppapi/c/private/ppb_gpu_blacklist_private.h" |
108 #include "ppapi/c/private/ppb_host_resolver_private.h" | 109 #include "ppapi/c/private/ppb_host_resolver_private.h" |
109 #include "ppapi/c/private/ppb_instance_private.h" | 110 #include "ppapi/c/private/ppb_instance_private.h" |
110 #include "ppapi/c/private/ppb_nacl_private.h" | 111 #include "ppapi/c/private/ppb_nacl_private.h" |
(...skipping 10 matching lines...) Expand all Loading... |
121 #include "ppapi/c/private/ppb_x509_certificate_private.h" | 122 #include "ppapi/c/private/ppb_x509_certificate_private.h" |
122 #include "ppapi/c/private/ppp_content_decryptor_private.h" | 123 #include "ppapi/c/private/ppp_content_decryptor_private.h" |
123 #include "ppapi/c/private/ppp_instance_private.h" | 124 #include "ppapi/c/private/ppp_instance_private.h" |
124 #include "ppapi/c/trusted/ppb_audio_trusted.h" | 125 #include "ppapi/c/trusted/ppb_audio_trusted.h" |
125 #include "ppapi/c/trusted/ppb_file_io_trusted.h" | 126 #include "ppapi/c/trusted/ppb_file_io_trusted.h" |
126 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h" | 127 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h" |
127 #include "ppapi/c/trusted/ppb_image_data_trusted.h" | 128 #include "ppapi/c/trusted/ppb_image_data_trusted.h" |
128 #include "ppapi/c/trusted/ppb_url_loader_trusted.h" | 129 #include "ppapi/c/trusted/ppb_url_loader_trusted.h" |
129 | 130 |
130 #endif /* PPAPI_TESTS_ALL_C_INCLUDES_H_ */ | 131 #endif /* PPAPI_TESTS_ALL_C_INCLUDES_H_ */ |
OLD | NEW |