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

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

Issue 12600019: Add Pepper TrueType font API plumbing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix linux_aura. Pango headers missing. Created 7 years, 9 months 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
« no previous file with comments | « ppapi/shared_impl/singleton_resource_id.h ('k') | ppapi/thunk/interfaces_ppb_public_dev.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 11 matching lines...) Expand all
22 #include "ppapi/c/dev/ppb_font_dev.h" 22 #include "ppapi/c/dev/ppb_font_dev.h"
23 #include "ppapi/c/dev/ppb_graphics_2d_dev.h" 23 #include "ppapi/c/dev/ppb_graphics_2d_dev.h"
24 #include "ppapi/c/dev/ppb_ime_input_event_dev.h" 24 #include "ppapi/c/dev/ppb_ime_input_event_dev.h"
25 #include "ppapi/c/dev/ppb_memory_dev.h" 25 #include "ppapi/c/dev/ppb_memory_dev.h"
26 #include "ppapi/c/dev/ppb_printing_dev.h" 26 #include "ppapi/c/dev/ppb_printing_dev.h"
27 #include "ppapi/c/dev/ppb_resource_array_dev.h" 27 #include "ppapi/c/dev/ppb_resource_array_dev.h"
28 #include "ppapi/c/dev/ppb_scrollbar_dev.h" 28 #include "ppapi/c/dev/ppb_scrollbar_dev.h"
29 #include "ppapi/c/dev/ppb_testing_dev.h" 29 #include "ppapi/c/dev/ppb_testing_dev.h"
30 #include "ppapi/c/dev/ppb_text_input_dev.h" 30 #include "ppapi/c/dev/ppb_text_input_dev.h"
31 #include "ppapi/c/dev/ppb_trace_event_dev.h" 31 #include "ppapi/c/dev/ppb_trace_event_dev.h"
32 #include "ppapi/c/dev/ppb_truetype_font_dev.h"
32 #include "ppapi/c/dev/ppb_url_util_dev.h" 33 #include "ppapi/c/dev/ppb_url_util_dev.h"
33 #include "ppapi/c/dev/ppb_var_deprecated.h" 34 #include "ppapi/c/dev/ppb_var_deprecated.h"
34 #include "ppapi/c/dev/ppb_video_decoder_dev.h" 35 #include "ppapi/c/dev/ppb_video_decoder_dev.h"
35 #include "ppapi/c/dev/ppb_view_dev.h" 36 #include "ppapi/c/dev/ppb_view_dev.h"
36 #include "ppapi/c/dev/ppb_widget_dev.h" 37 #include "ppapi/c/dev/ppb_widget_dev.h"
37 #include "ppapi/c/dev/ppb_zoom_dev.h" 38 #include "ppapi/c/dev/ppb_zoom_dev.h"
38 #include "ppapi/c/dev/ppp_class_deprecated.h" 39 #include "ppapi/c/dev/ppp_class_deprecated.h"
39 #include "ppapi/c/dev/ppp_find_dev.h" 40 #include "ppapi/c/dev/ppp_find_dev.h"
40 #include "ppapi/c/dev/ppp_printing_dev.h" 41 #include "ppapi/c/dev/ppp_printing_dev.h"
41 #include "ppapi/c/dev/ppp_scrollbar_dev.h" 42 #include "ppapi/c/dev/ppp_scrollbar_dev.h"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 #include "ppapi/c/private/ppb_x509_certificate_private.h" 115 #include "ppapi/c/private/ppb_x509_certificate_private.h"
115 #include "ppapi/c/private/ppp_content_decryptor_private.h" 116 #include "ppapi/c/private/ppp_content_decryptor_private.h"
116 #include "ppapi/c/private/ppp_instance_private.h" 117 #include "ppapi/c/private/ppp_instance_private.h"
117 #include "ppapi/c/trusted/ppb_audio_trusted.h" 118 #include "ppapi/c/trusted/ppb_audio_trusted.h"
118 #include "ppapi/c/trusted/ppb_file_io_trusted.h" 119 #include "ppapi/c/trusted/ppb_file_io_trusted.h"
119 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h" 120 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h"
120 #include "ppapi/c/trusted/ppb_image_data_trusted.h" 121 #include "ppapi/c/trusted/ppb_image_data_trusted.h"
121 #include "ppapi/c/trusted/ppb_url_loader_trusted.h" 122 #include "ppapi/c/trusted/ppb_url_loader_trusted.h"
122 123
123 #endif /* PPAPI_TESTS_ALL_C_INCLUDES_H_ */ 124 #endif /* PPAPI_TESTS_ALL_C_INCLUDES_H_ */
OLDNEW
« no previous file with comments | « ppapi/shared_impl/singleton_resource_id.h ('k') | ppapi/thunk/interfaces_ppb_public_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698