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