| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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 #include "chrome/common/ppapi_utils.h" | 4 #include "chrome/common/ppapi_utils.h" |
| 5 | 5 |
| 6 #include <cstring> | 6 #include <cstring> |
| 7 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "ppapi/c/dev/ppb_audio_input_dev.h" | 9 #include "ppapi/c/dev/ppb_audio_input_dev.h" |
| 10 #include "ppapi/c/dev/ppb_buffer_dev.h" | 10 #include "ppapi/c/dev/ppb_buffer_dev.h" |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 #include "ppapi/c/private/ppb_flash_fullscreen.h" | 89 #include "ppapi/c/private/ppb_flash_fullscreen.h" |
| 90 #include "ppapi/c/private/ppb_flash_menu.h" | 90 #include "ppapi/c/private/ppb_flash_menu.h" |
| 91 #include "ppapi/c/private/ppb_flash_message_loop.h" | 91 #include "ppapi/c/private/ppb_flash_message_loop.h" |
| 92 #include "ppapi/c/private/ppb_flash_print.h" | 92 #include "ppapi/c/private/ppb_flash_print.h" |
| 93 #include "ppapi/c/private/ppb_host_resolver_private.h" | 93 #include "ppapi/c/private/ppb_host_resolver_private.h" |
| 94 #include "ppapi/c/private/ppb_input_event_private.h" | 94 #include "ppapi/c/private/ppb_input_event_private.h" |
| 95 #include "ppapi/c/private/ppb_isolated_file_system_private.h" | 95 #include "ppapi/c/private/ppb_isolated_file_system_private.h" |
| 96 #include "ppapi/c/private/ppb_output_protection_private.h" | 96 #include "ppapi/c/private/ppb_output_protection_private.h" |
| 97 #include "ppapi/c/private/ppb_pdf.h" | 97 #include "ppapi/c/private/ppb_pdf.h" |
| 98 #include "ppapi/c/private/ppb_proxy_private.h" | 98 #include "ppapi/c/private/ppb_proxy_private.h" |
| 99 #include "ppapi/c/private/ppb_talk_private.h" | |
| 100 #include "ppapi/c/private/ppb_tcp_server_socket_private.h" | 99 #include "ppapi/c/private/ppb_tcp_server_socket_private.h" |
| 101 #include "ppapi/c/private/ppb_tcp_socket_private.h" | 100 #include "ppapi/c/private/ppb_tcp_socket_private.h" |
| 102 #include "ppapi/c/private/ppb_testing_private.h" | 101 #include "ppapi/c/private/ppb_testing_private.h" |
| 103 #include "ppapi/c/private/ppb_udp_socket_private.h" | 102 #include "ppapi/c/private/ppb_udp_socket_private.h" |
| 104 #include "ppapi/c/private/ppb_uma_private.h" | 103 #include "ppapi/c/private/ppb_uma_private.h" |
| 105 #include "ppapi/c/private/ppb_video_destination_private.h" | 104 #include "ppapi/c/private/ppb_video_destination_private.h" |
| 106 #include "ppapi/c/private/ppb_video_source_private.h" | 105 #include "ppapi/c/private/ppb_video_source_private.h" |
| 107 #include "ppapi/c/private/ppb_x509_certificate_private.h" | 106 #include "ppapi/c/private/ppb_x509_certificate_private.h" |
| 108 #include "ppapi/c/trusted/ppb_broker_trusted.h" | 107 #include "ppapi/c/trusted/ppb_broker_trusted.h" |
| 109 #include "ppapi/c/trusted/ppb_browser_font_trusted.h" | 108 #include "ppapi/c/trusted/ppb_browser_font_trusted.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 133 | 132 |
| 134 #define LEGACY_IFACE(iface_str, dummy) \ | 133 #define LEGACY_IFACE(iface_str, dummy) \ |
| 135 if (strcmp(name, iface_str) == 0) \ | 134 if (strcmp(name, iface_str) == 0) \ |
| 136 return true; | 135 return true; |
| 137 | 136 |
| 138 #include "ppapi/thunk/interfaces_legacy.h" | 137 #include "ppapi/thunk/interfaces_legacy.h" |
| 139 | 138 |
| 140 #undef LEGACY_IFACE | 139 #undef LEGACY_IFACE |
| 141 return false; | 140 return false; |
| 142 } | 141 } |
| OLD | NEW |