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_var_shared.h" | 103 #include "ppapi/shared_impl/ppb_var_shared.h" |
104 #include "ppapi/shared_impl/time_conversion.h" | 104 #include "ppapi/shared_impl/time_conversion.h" |
105 #include "ppapi/thunk/enter.h" | 105 #include "ppapi/thunk/enter.h" |
106 #include "ppapi/thunk/thunk.h" | 106 #include "ppapi/thunk/thunk.h" |
107 #include "webkit/plugins/plugin_switches.h" | 107 #include "webkit/plugins/plugin_switches.h" |
108 #include "webkit/plugins/ppapi/common.h" | 108 #include "webkit/plugins/ppapi/common.h" |
109 #include "webkit/plugins/ppapi/host_globals.h" | 109 #include "webkit/plugins/ppapi/host_globals.h" |
110 #include "webkit/plugins/ppapi/ppapi_interface_factory.h" | 110 #include "webkit/plugins/ppapi/ppapi_interface_factory.h" |
111 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 111 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
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" | |
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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 int retval = entry_points.initialize_module(pp_module(), &GetInterface); | 627 int retval = entry_points.initialize_module(pp_module(), &GetInterface); |
629 if (retval != 0) { | 628 if (retval != 0) { |
630 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; | 629 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; |
631 return false; | 630 return false; |
632 } | 631 } |
633 return true; | 632 return true; |
634 } | 633 } |
635 | 634 |
636 } // namespace ppapi | 635 } // namespace ppapi |
637 } // namespace webkit | 636 } // namespace webkit |
OLD | NEW |