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 #include "webkit/plugins/ppapi/plugin_module.h" | 5 #include "webkit/plugins/ppapi/plugin_module.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 #include "ppapi/c/private/ppb_instance_private.h" | 88 #include "ppapi/c/private/ppb_instance_private.h" |
89 #include "ppapi/c/private/ppb_network_list_private.h" | 89 #include "ppapi/c/private/ppb_network_list_private.h" |
90 #include "ppapi/c/private/ppb_network_monitor_private.h" | 90 #include "ppapi/c/private/ppb_network_monitor_private.h" |
91 #include "ppapi/c/private/ppb_pdf.h" | 91 #include "ppapi/c/private/ppb_pdf.h" |
92 #include "ppapi/c/private/ppb_proxy_private.h" | 92 #include "ppapi/c/private/ppb_proxy_private.h" |
93 #include "ppapi/c/private/ppb_talk_private.h" | 93 #include "ppapi/c/private/ppb_talk_private.h" |
94 #include "ppapi/c/private/ppb_tcp_server_socket_private.h" | 94 #include "ppapi/c/private/ppb_tcp_server_socket_private.h" |
95 #include "ppapi/c/private/ppb_tcp_socket_private.h" | 95 #include "ppapi/c/private/ppb_tcp_socket_private.h" |
96 #include "ppapi/c/private/ppb_udp_socket_private.h" | 96 #include "ppapi/c/private/ppb_udp_socket_private.h" |
97 #include "ppapi/c/private/ppb_uma_private.h" | 97 #include "ppapi/c/private/ppb_uma_private.h" |
| 98 #include "ppapi/c/private/ppb_video_destination_private.h" |
| 99 #include "ppapi/c/private/ppb_video_source_private.h" |
98 #include "ppapi/c/private/ppb_x509_certificate_private.h" | 100 #include "ppapi/c/private/ppb_x509_certificate_private.h" |
99 #include "ppapi/c/trusted/ppb_audio_trusted.h" | 101 #include "ppapi/c/trusted/ppb_audio_trusted.h" |
100 #include "ppapi/c/trusted/ppb_broker_trusted.h" | 102 #include "ppapi/c/trusted/ppb_broker_trusted.h" |
101 #include "ppapi/c/trusted/ppb_browser_font_trusted.h" | 103 #include "ppapi/c/trusted/ppb_browser_font_trusted.h" |
102 #include "ppapi/c/trusted/ppb_buffer_trusted.h" | 104 #include "ppapi/c/trusted/ppb_buffer_trusted.h" |
103 #include "ppapi/c/trusted/ppb_char_set_trusted.h" | 105 #include "ppapi/c/trusted/ppb_char_set_trusted.h" |
104 #include "ppapi/c/trusted/ppb_file_chooser_trusted.h" | 106 #include "ppapi/c/trusted/ppb_file_chooser_trusted.h" |
105 #include "ppapi/c/trusted/ppb_file_io_trusted.h" | 107 #include "ppapi/c/trusted/ppb_file_io_trusted.h" |
106 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h" | 108 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h" |
107 #include "ppapi/c/trusted/ppb_image_data_trusted.h" | 109 #include "ppapi/c/trusted/ppb_image_data_trusted.h" |
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 int retval = entry_points.initialize_module(pp_module(), &GetInterface); | 650 int retval = entry_points.initialize_module(pp_module(), &GetInterface); |
649 if (retval != 0) { | 651 if (retval != 0) { |
650 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; | 652 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; |
651 return false; | 653 return false; |
652 } | 654 } |
653 return true; | 655 return true; |
654 } | 656 } |
655 | 657 |
656 } // namespace ppapi | 658 } // namespace ppapi |
657 } // namespace webkit | 659 } // namespace webkit |
OLD | NEW |