| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 #include "ppapi/cpp/touch_point.h" | 69 #include "ppapi/cpp/touch_point.h" |
| 70 #include "ppapi/cpp/udp_socket.h" | 70 #include "ppapi/cpp/udp_socket.h" |
| 71 #include "ppapi/cpp/url_loader.h" | 71 #include "ppapi/cpp/url_loader.h" |
| 72 #include "ppapi/cpp/url_request_info.h" | 72 #include "ppapi/cpp/url_request_info.h" |
| 73 #include "ppapi/cpp/url_response_info.h" | 73 #include "ppapi/cpp/url_response_info.h" |
| 74 #include "ppapi/cpp/var.h" | 74 #include "ppapi/cpp/var.h" |
| 75 #include "ppapi/cpp/var_array.h" | 75 #include "ppapi/cpp/var_array.h" |
| 76 #include "ppapi/cpp/var_array_buffer.h" | 76 #include "ppapi/cpp/var_array_buffer.h" |
| 77 #include "ppapi/cpp/var_dictionary.h" | 77 #include "ppapi/cpp/var_dictionary.h" |
| 78 #include "ppapi/cpp/video_frame.h" | 78 #include "ppapi/cpp/video_frame.h" |
| 79 #include "ppapi/cpp/vpn_provider.h" |
| 79 #include "ppapi/cpp/websocket.h" | 80 #include "ppapi/cpp/websocket.h" |
| 80 #include "ppapi/utility/completion_callback_factory.h" | 81 #include "ppapi/utility/completion_callback_factory.h" |
| 81 #include "ppapi/utility/completion_callback_factory_thread_traits.h" | 82 #include "ppapi/utility/completion_callback_factory_thread_traits.h" |
| 82 #include "ppapi/utility/graphics/paint_aggregator.h" | 83 #include "ppapi/utility/graphics/paint_aggregator.h" |
| 83 #include "ppapi/utility/graphics/paint_manager.h" | 84 #include "ppapi/utility/graphics/paint_manager.h" |
| 84 #include "ppapi/utility/threading/lock.h" | 85 #include "ppapi/utility/threading/lock.h" |
| 85 #include "ppapi/utility/threading/simple_thread.h" | 86 #include "ppapi/utility/threading/simple_thread.h" |
| 86 | 87 |
| 87 #endif // PPAPI_TESTS_ALL_CPP_INCLUDES_H_ | 88 #endif // PPAPI_TESTS_ALL_CPP_INCLUDES_H_ |
| OLD | NEW |