| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 #include "ppapi/c/trusted/ppb_audio_trusted.h" | 87 #include "ppapi/c/trusted/ppb_audio_trusted.h" |
| 88 #include "ppapi/c/trusted/ppb_broker_trusted.h" | 88 #include "ppapi/c/trusted/ppb_broker_trusted.h" |
| 89 #include "ppapi/c/trusted/ppb_browser_font_trusted.h" | 89 #include "ppapi/c/trusted/ppb_browser_font_trusted.h" |
| 90 #include "ppapi/c/trusted/ppb_buffer_trusted.h" | 90 #include "ppapi/c/trusted/ppb_buffer_trusted.h" |
| 91 #include "ppapi/c/trusted/ppb_char_set_trusted.h" | 91 #include "ppapi/c/trusted/ppb_char_set_trusted.h" |
| 92 #include "ppapi/c/trusted/ppb_file_chooser_trusted.h" | 92 #include "ppapi/c/trusted/ppb_file_chooser_trusted.h" |
| 93 #include "ppapi/c/trusted/ppb_file_io_trusted.h" | 93 #include "ppapi/c/trusted/ppb_file_io_trusted.h" |
| 94 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h" | 94 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h" |
| 95 #include "ppapi/c/trusted/ppb_image_data_trusted.h" | 95 #include "ppapi/c/trusted/ppb_image_data_trusted.h" |
| 96 #include "ppapi/c/trusted/ppb_url_loader_trusted.h" | 96 #include "ppapi/c/trusted/ppb_url_loader_trusted.h" |
| 97 #include "ppapi/c/private/ppb_x509_certificate_private.h" |
| 97 #include "ppapi/shared_impl/callback_tracker.h" | 98 #include "ppapi/shared_impl/callback_tracker.h" |
| 98 #include "ppapi/shared_impl/ppb_input_event_shared.h" | 99 #include "ppapi/shared_impl/ppb_input_event_shared.h" |
| 99 #include "ppapi/shared_impl/ppb_opengles2_shared.h" | 100 #include "ppapi/shared_impl/ppb_opengles2_shared.h" |
| 100 #include "ppapi/shared_impl/ppb_var_shared.h" | 101 #include "ppapi/shared_impl/ppb_var_shared.h" |
| 101 #include "ppapi/shared_impl/time_conversion.h" | 102 #include "ppapi/shared_impl/time_conversion.h" |
| 102 #include "ppapi/thunk/enter.h" | 103 #include "ppapi/thunk/enter.h" |
| 103 #include "ppapi/thunk/thunk.h" | 104 #include "ppapi/thunk/thunk.h" |
| 104 #include "webkit/plugins/plugin_switches.h" | 105 #include "webkit/plugins/plugin_switches.h" |
| 105 #include "webkit/plugins/ppapi/common.h" | 106 #include "webkit/plugins/ppapi/common.h" |
| 106 #include "webkit/plugins/ppapi/host_globals.h" | 107 #include "webkit/plugins/ppapi/host_globals.h" |
| (...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 int retval = entry_points.initialize_module(pp_module(), &GetInterface); | 621 int retval = entry_points.initialize_module(pp_module(), &GetInterface); |
| 621 if (retval != 0) { | 622 if (retval != 0) { |
| 622 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; | 623 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; |
| 623 return false; | 624 return false; |
| 624 } | 625 } |
| 625 return true; | 626 return true; |
| 626 } | 627 } |
| 627 | 628 |
| 628 } // namespace ppapi | 629 } // namespace ppapi |
| 629 } // namespace webkit | 630 } // namespace webkit |
| OLD | NEW |