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 | 5 // This test simply includes all the C++ headers to ensure they compile with a |
6 // C++ compiler. If it compiles, it passes. | 6 // C++ compiler. If it compiles, it passes. |
7 // | 7 // |
8 #ifndef PPAPI_TESTS_ALL_CPP_INCLUDES_H_ | 8 #ifndef PPAPI_TESTS_ALL_CPP_INCLUDES_H_ |
9 #define PPAPI_TESTS_ALL_CPP_INCLUDES_H_ | 9 #define PPAPI_TESTS_ALL_CPP_INCLUDES_H_ |
10 | 10 |
11 #include "ppapi/cpp/audio.h" | 11 #include "ppapi/cpp/audio.h" |
| 12 #include "ppapi/cpp/audio_buffer.h" |
12 #include "ppapi/cpp/audio_config.h" | 13 #include "ppapi/cpp/audio_config.h" |
13 #include "ppapi/cpp/audio_frame.h" | |
14 #include "ppapi/cpp/completion_callback.h" | 14 #include "ppapi/cpp/completion_callback.h" |
15 #include "ppapi/cpp/core.h" | 15 #include "ppapi/cpp/core.h" |
16 #include "ppapi/cpp/dev/alarms_dev.h" | 16 #include "ppapi/cpp/dev/alarms_dev.h" |
17 #include "ppapi/cpp/dev/array_dev.h" | 17 #include "ppapi/cpp/dev/array_dev.h" |
18 #include "ppapi/cpp/dev/buffer_dev.h" | 18 #include "ppapi/cpp/dev/buffer_dev.h" |
19 #include "ppapi/cpp/dev/device_ref_dev.h" | 19 #include "ppapi/cpp/dev/device_ref_dev.h" |
20 #include "ppapi/cpp/dev/file_chooser_dev.h" | 20 #include "ppapi/cpp/dev/file_chooser_dev.h" |
21 #include "ppapi/cpp/dev/find_dev.h" | 21 #include "ppapi/cpp/dev/find_dev.h" |
22 #include "ppapi/cpp/dev/font_dev.h" | 22 #include "ppapi/cpp/dev/font_dev.h" |
23 #include "ppapi/cpp/dev/graphics_2d_dev.h" | 23 #include "ppapi/cpp/dev/graphics_2d_dev.h" |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 #include "ppapi/cpp/video_frame.h" | 89 #include "ppapi/cpp/video_frame.h" |
90 #include "ppapi/cpp/websocket.h" | 90 #include "ppapi/cpp/websocket.h" |
91 #include "ppapi/utility/completion_callback_factory.h" | 91 #include "ppapi/utility/completion_callback_factory.h" |
92 #include "ppapi/utility/completion_callback_factory_thread_traits.h" | 92 #include "ppapi/utility/completion_callback_factory_thread_traits.h" |
93 #include "ppapi/utility/graphics/paint_aggregator.h" | 93 #include "ppapi/utility/graphics/paint_aggregator.h" |
94 #include "ppapi/utility/graphics/paint_manager.h" | 94 #include "ppapi/utility/graphics/paint_manager.h" |
95 #include "ppapi/utility/threading/lock.h" | 95 #include "ppapi/utility/threading/lock.h" |
96 #include "ppapi/utility/threading/simple_thread.h" | 96 #include "ppapi/utility/threading/simple_thread.h" |
97 | 97 |
98 #endif // PPAPI_TESTS_ALL_CPP_INCLUDES_H_ | 98 #endif // PPAPI_TESTS_ALL_CPP_INCLUDES_H_ |
OLD | NEW |