OLD | NEW |
1 /* Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2010 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 #include "ppapi/c/pp_point.h" | 59 #include "ppapi/c/pp_point.h" |
60 #include "ppapi/c/pp_rect.h" | 60 #include "ppapi/c/pp_rect.h" |
61 #include "ppapi/c/pp_resource.h" | 61 #include "ppapi/c/pp_resource.h" |
62 #include "ppapi/c/pp_size.h" | 62 #include "ppapi/c/pp_size.h" |
63 #include "ppapi/c/pp_stdint.h" | 63 #include "ppapi/c/pp_stdint.h" |
64 #include "ppapi/c/pp_time.h" | 64 #include "ppapi/c/pp_time.h" |
65 #include "ppapi/c/pp_var.h" | 65 #include "ppapi/c/pp_var.h" |
66 #include "ppapi/c/ppb.h" | 66 #include "ppapi/c/ppb.h" |
67 #include "ppapi/c/ppb_audio.h" | 67 #include "ppapi/c/ppb_audio.h" |
68 #include "ppapi/c/ppb_audio_config.h" | 68 #include "ppapi/c/ppb_audio_config.h" |
69 #include "ppapi/c/ppb_class.h" | |
70 #include "ppapi/c/ppb_core.h" | 69 #include "ppapi/c/ppb_core.h" |
71 #include "ppapi/c/ppb_graphics_2d.h" | 70 #include "ppapi/c/ppb_graphics_2d.h" |
72 #include "ppapi/c/ppb_image_data.h" | 71 #include "ppapi/c/ppb_image_data.h" |
73 #include "ppapi/c/ppb_instance.h" | 72 #include "ppapi/c/ppb_instance.h" |
74 #include "ppapi/c/ppb_url_loader.h" | 73 #include "ppapi/c/ppb_url_loader.h" |
75 #include "ppapi/c/ppb_url_request_info.h" | 74 #include "ppapi/c/ppb_url_request_info.h" |
76 #include "ppapi/c/ppb_url_response_info.h" | 75 #include "ppapi/c/ppb_url_response_info.h" |
77 #include "ppapi/c/ppb_var.h" | |
78 #include "ppapi/c/ppp.h" | 76 #include "ppapi/c/ppp.h" |
79 #include "ppapi/c/ppp_instance.h" | 77 #include "ppapi/c/ppp_instance.h" |
80 #include "ppapi/c/private/ppb_flash.h" | 78 #include "ppapi/c/private/ppb_flash.h" |
81 #include "ppapi/c/private/ppb_flash_menu.h" | 79 #include "ppapi/c/private/ppb_flash_menu.h" |
82 #include "ppapi/c/private/ppb_nacl_private.h" | 80 #include "ppapi/c/private/ppb_nacl_private.h" |
83 #include "ppapi/c/private/ppb_pdf.h" | 81 #include "ppapi/c/private/ppb_pdf.h" |
84 #include "ppapi/c/trusted/ppb_audio_trusted.h" | 82 #include "ppapi/c/trusted/ppb_audio_trusted.h" |
85 #include "ppapi/c/trusted/ppb_image_data_trusted.h" | 83 #include "ppapi/c/trusted/ppb_image_data_trusted.h" |
86 #include "ppapi/c/trusted/ppb_url_loader_trusted.h" | 84 #include "ppapi/c/trusted/ppb_url_loader_trusted.h" |
87 | 85 |
88 #endif /* PPAPI_TESTS_ALL_C_INCLUDES_H_ */ | 86 #endif /* PPAPI_TESTS_ALL_C_INCLUDES_H_ */ |
89 | 87 |
OLD | NEW |