| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 110 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
| 111 #include "webkit/plugins/ppapi/ppb_directory_reader_impl.h" | 111 #include "webkit/plugins/ppapi/ppb_directory_reader_impl.h" |
| 112 #include "webkit/plugins/ppapi/ppb_flash_impl.h" | 112 #include "webkit/plugins/ppapi/ppb_flash_impl.h" |
| 113 #include "webkit/plugins/ppapi/ppb_gpu_blacklist_private_impl.h" | 113 #include "webkit/plugins/ppapi/ppb_gpu_blacklist_private_impl.h" |
| 114 #include "webkit/plugins/ppapi/ppb_graphics_2d_impl.h" | 114 #include "webkit/plugins/ppapi/ppb_graphics_2d_impl.h" |
| 115 #include "webkit/plugins/ppapi/ppb_image_data_impl.h" | 115 #include "webkit/plugins/ppapi/ppb_image_data_impl.h" |
| 116 #include "webkit/plugins/ppapi/ppb_proxy_impl.h" | 116 #include "webkit/plugins/ppapi/ppb_proxy_impl.h" |
| 117 #include "webkit/plugins/ppapi/ppb_scrollbar_impl.h" | 117 #include "webkit/plugins/ppapi/ppb_scrollbar_impl.h" |
| 118 #include "webkit/plugins/ppapi/ppb_uma_private_impl.h" | 118 #include "webkit/plugins/ppapi/ppb_uma_private_impl.h" |
| 119 #include "webkit/plugins/ppapi/ppb_var_deprecated_impl.h" | 119 #include "webkit/plugins/ppapi/ppb_var_deprecated_impl.h" |
| 120 #include "webkit/plugins/ppapi/ppb_video_capture_impl.h" | |
| 121 #include "webkit/plugins/ppapi/ppb_video_decoder_impl.h" | 120 #include "webkit/plugins/ppapi/ppb_video_decoder_impl.h" |
| 122 | 121 |
| 123 using ppapi::InputEventData; | 122 using ppapi::InputEventData; |
| 124 using ppapi::PpapiGlobals; | 123 using ppapi::PpapiGlobals; |
| 125 using ppapi::TimeTicksToPPTimeTicks; | 124 using ppapi::TimeTicksToPPTimeTicks; |
| 126 using ppapi::TimeToPPTime; | 125 using ppapi::TimeToPPTime; |
| 127 using ppapi::thunk::EnterResource; | 126 using ppapi::thunk::EnterResource; |
| 128 using ppapi::thunk::PPB_Graphics2D_API; | 127 using ppapi::thunk::PPB_Graphics2D_API; |
| 129 using ppapi::thunk::PPB_InputEvent_API; | 128 using ppapi::thunk::PPB_InputEvent_API; |
| 130 | 129 |
| (...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 617 int retval = entry_points.initialize_module(pp_module(), &GetInterface); | 616 int retval = entry_points.initialize_module(pp_module(), &GetInterface); |
| 618 if (retval != 0) { | 617 if (retval != 0) { |
| 619 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; | 618 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; |
| 620 return false; | 619 return false; |
| 621 } | 620 } |
| 622 return true; | 621 return true; |
| 623 } | 622 } |
| 624 | 623 |
| 625 } // namespace ppapi | 624 } // namespace ppapi |
| 626 } // namespace webkit | 625 } // namespace webkit |
| OLD | NEW |