| 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 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 #include "ppapi/cpp/fullscreen.h" | 39 #include "ppapi/cpp/fullscreen.h" |
| 40 #include "ppapi/cpp/graphics_2d.h" | 40 #include "ppapi/cpp/graphics_2d.h" |
| 41 #include "ppapi/cpp/graphics_3d.h" | 41 #include "ppapi/cpp/graphics_3d.h" |
| 42 #include "ppapi/cpp/graphics_3d_client.h" | 42 #include "ppapi/cpp/graphics_3d_client.h" |
| 43 #include "ppapi/cpp/image_data.h" | 43 #include "ppapi/cpp/image_data.h" |
| 44 #include "ppapi/cpp/instance.h" | 44 #include "ppapi/cpp/instance.h" |
| 45 #include "ppapi/cpp/logging.h" | 45 #include "ppapi/cpp/logging.h" |
| 46 #include "ppapi/cpp/module.h" | 46 #include "ppapi/cpp/module.h" |
| 47 #include "ppapi/cpp/module_impl.h" | 47 #include "ppapi/cpp/module_impl.h" |
| 48 #include "ppapi/cpp/mouse_lock.h" | 48 #include "ppapi/cpp/mouse_lock.h" |
| 49 #include "ppapi/cpp/point.h" |
| 49 #include "ppapi/cpp/private/flash_fullscreen.h" | 50 #include "ppapi/cpp/private/flash_fullscreen.h" |
| 50 #include "ppapi/cpp/private/instance_private.h" | 51 #include "ppapi/cpp/private/instance_private.h" |
| 51 #include "ppapi/cpp/point.h" | 52 #include "ppapi/cpp/private/instance_private.h" |
| 53 #include "ppapi/cpp/private/net_address_private.h" |
| 54 #include "ppapi/cpp/private/tcp_socket_private.h" |
| 55 #include "ppapi/cpp/private/udp_socket_private.h" |
| 56 #include "ppapi/cpp/private/var_private.h" |
| 52 #include "ppapi/cpp/rect.h" | 57 #include "ppapi/cpp/rect.h" |
| 53 #include "ppapi/cpp/resource.h" | 58 #include "ppapi/cpp/resource.h" |
| 54 #include "ppapi/cpp/size.h" | 59 #include "ppapi/cpp/size.h" |
| 60 #include "ppapi/cpp/touch_point.h" |
| 55 #include "ppapi/cpp/url_loader.h" | 61 #include "ppapi/cpp/url_loader.h" |
| 56 #include "ppapi/cpp/url_request_info.h" | 62 #include "ppapi/cpp/url_request_info.h" |
| 57 #include "ppapi/cpp/url_response_info.h" | 63 #include "ppapi/cpp/url_response_info.h" |
| 58 #include "ppapi/cpp/var.h" | 64 #include "ppapi/cpp/var.h" |
| 59 #include "ppapi/cpp/var_array_buffer.h" | 65 #include "ppapi/cpp/var_array_buffer.h" |
| 60 #include "ppapi/cpp/websocket.h" | 66 #include "ppapi/cpp/websocket.h" |
| 61 #include "ppapi/cpp/private/instance_private.h" | |
| 62 #include "ppapi/cpp/private/net_address_private.h" | |
| 63 #include "ppapi/cpp/private/tcp_socket_private.h" | |
| 64 #include "ppapi/cpp/private/udp_socket_private.h" | |
| 65 #include "ppapi/cpp/private/var_private.h" | |
| 66 #include "ppapi/utility/graphics/paint_aggregator.h" | 67 #include "ppapi/utility/graphics/paint_aggregator.h" |
| 67 #include "ppapi/utility/graphics/paint_manager.h" | 68 #include "ppapi/utility/graphics/paint_manager.h" |
| 68 #include "ppapi/utility/non_thread_safe_ref_count.h" | 69 #include "ppapi/utility/non_thread_safe_ref_count.h" |
| 69 | 70 |
| 70 #endif // PPAPI_TESTS_ALL_CPP_INCLUDES_H_ | 71 #endif // PPAPI_TESTS_ALL_CPP_INCLUDES_H_ |
| OLD | NEW |