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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 #include "ppapi/shared_impl/ppb_opengles2_shared.h" | 103 #include "ppapi/shared_impl/ppb_opengles2_shared.h" |
104 #include "ppapi/shared_impl/ppb_var_shared.h" | 104 #include "ppapi/shared_impl/ppb_var_shared.h" |
105 #include "ppapi/shared_impl/time_conversion.h" | 105 #include "ppapi/shared_impl/time_conversion.h" |
106 #include "ppapi/thunk/enter.h" | 106 #include "ppapi/thunk/enter.h" |
107 #include "ppapi/thunk/thunk.h" | 107 #include "ppapi/thunk/thunk.h" |
108 #include "webkit/plugins/plugin_switches.h" | 108 #include "webkit/plugins/plugin_switches.h" |
109 #include "webkit/plugins/ppapi/common.h" | 109 #include "webkit/plugins/ppapi/common.h" |
110 #include "webkit/plugins/ppapi/host_globals.h" | 110 #include "webkit/plugins/ppapi/host_globals.h" |
111 #include "webkit/plugins/ppapi/ppapi_interface_factory.h" | 111 #include "webkit/plugins/ppapi/ppapi_interface_factory.h" |
112 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 112 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
113 #include "webkit/plugins/ppapi/ppb_directory_reader_impl.h" | |
114 #include "webkit/plugins/ppapi/ppb_gpu_blacklist_private_impl.h" | 113 #include "webkit/plugins/ppapi/ppb_gpu_blacklist_private_impl.h" |
115 #include "webkit/plugins/ppapi/ppb_graphics_2d_impl.h" | 114 #include "webkit/plugins/ppapi/ppb_graphics_2d_impl.h" |
116 #include "webkit/plugins/ppapi/ppb_image_data_impl.h" | 115 #include "webkit/plugins/ppapi/ppb_image_data_impl.h" |
117 #include "webkit/plugins/ppapi/ppb_proxy_impl.h" | 116 #include "webkit/plugins/ppapi/ppb_proxy_impl.h" |
118 #include "webkit/plugins/ppapi/ppb_scrollbar_impl.h" | 117 #include "webkit/plugins/ppapi/ppb_scrollbar_impl.h" |
119 #include "webkit/plugins/ppapi/ppb_uma_private_impl.h" | 118 #include "webkit/plugins/ppapi/ppb_uma_private_impl.h" |
120 #include "webkit/plugins/ppapi/ppb_var_deprecated_impl.h" | 119 #include "webkit/plugins/ppapi/ppb_var_deprecated_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; |
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
634 int retval = entry_points.initialize_module(pp_module(), &GetInterface); | 633 int retval = entry_points.initialize_module(pp_module(), &GetInterface); |
635 if (retval != 0) { | 634 if (retval != 0) { |
636 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; | 635 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; |
637 return false; | 636 return false; |
638 } | 637 } |
639 return true; | 638 return true; |
640 } | 639 } |
641 | 640 |
642 } // namespace ppapi | 641 } // namespace ppapi |
643 } // namespace webkit | 642 } // namespace webkit |
OLD | NEW |