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

Side by Side Diff: ppapi/tests/all_c_includes.h

Issue 5674004: Add compile assertions to enforce the sizes of all structs and enums in the C... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years 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
OLDNEW
1
2 /* Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2010 The Chromium Authors. All rights reserved.
3 * 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
4 * found in the LICENSE file. 3 * found in the LICENSE file.
5 * 4 *
6 * 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
7 * compiler. If it compiles, it passes. 6 * compiler. If it compiles, it passes.
8 */ 7 */
8 #ifndef PPAPI_TESTS_ALL_C_INCLUDES_H_
9 #define PPAPI_TESTS_ALL_C_INCLUDES_H_
10
9 #include "ppapi/c/dev/deprecated_bool.h" 11 #include "ppapi/c/dev/deprecated_bool.h"
10 #include "ppapi/c/dev/pp_cursor_type_dev.h" 12 #include "ppapi/c/dev/pp_cursor_type_dev.h"
11 #include "ppapi/c/dev/pp_file_info_dev.h" 13 #include "ppapi/c/dev/pp_file_info_dev.h"
12 #include "ppapi/c/dev/pp_video_dev.h" 14 #include "ppapi/c/dev/pp_video_dev.h"
13 #include "ppapi/c/dev/ppb_audio_config_dev.h" 15 #include "ppapi/c/dev/ppb_audio_config_dev.h"
14 #include "ppapi/c/dev/ppb_audio_dev.h" 16 #include "ppapi/c/dev/ppb_audio_dev.h"
15 #include "ppapi/c/dev/ppb_audio_trusted_dev.h" 17 #include "ppapi/c/dev/ppb_audio_trusted_dev.h"
16 #include "ppapi/c/dev/ppb_buffer_dev.h" 18 #include "ppapi/c/dev/ppb_buffer_dev.h"
17 #include "ppapi/c/dev/ppb_char_set_dev.h" 19 #include "ppapi/c/dev/ppb_char_set_dev.h"
18 #include "ppapi/c/dev/ppb_cursor_control_dev.h" 20 #include "ppapi/c/dev/ppb_cursor_control_dev.h"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 #include "ppapi/c/ppb_instance.h" 68 #include "ppapi/c/ppb_instance.h"
67 #include "ppapi/c/ppb_url_loader.h" 69 #include "ppapi/c/ppb_url_loader.h"
68 #include "ppapi/c/ppb_url_request_info.h" 70 #include "ppapi/c/ppb_url_request_info.h"
69 #include "ppapi/c/ppb_url_response_info.h" 71 #include "ppapi/c/ppb_url_response_info.h"
70 #include "ppapi/c/ppb_var.h" 72 #include "ppapi/c/ppb_var.h"
71 #include "ppapi/c/ppp.h" 73 #include "ppapi/c/ppp.h"
72 #include "ppapi/c/ppp_instance.h" 74 #include "ppapi/c/ppp_instance.h"
73 #include "ppapi/c/trusted/ppb_image_data_trusted.h" 75 #include "ppapi/c/trusted/ppb_image_data_trusted.h"
74 #include "ppapi/c/trusted/ppb_url_loader_trusted.h" 76 #include "ppapi/c/trusted/ppb_url_loader_trusted.h"
75 77
78 #endif /* PPAPI_TESTS_ALL_C_INCLUDES_H_ */
79
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698