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 "content/renderer/pepper/plugin_module.h" | 5 #include "content/renderer/pepper/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" |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/message_loop/message_loop.h" | 13 #include "base/message_loop/message_loop.h" |
14 #include "base/message_loop/message_loop_proxy.h" | 14 #include "base/message_loop/message_loop_proxy.h" |
15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
16 #include "content/common/pepper_plugin_registry.h" | |
17 #include "content/renderer/pepper/common.h" | 16 #include "content/renderer/pepper/common.h" |
18 #include "content/renderer/pepper/host_globals.h" | 17 #include "content/renderer/pepper/host_globals.h" |
| 18 #include "content/renderer/pepper/pepper_plugin_registry.h" |
19 #include "content/renderer/pepper/ppapi_interface_factory.h" | 19 #include "content/renderer/pepper/ppapi_interface_factory.h" |
20 #include "content/renderer/pepper/ppapi_plugin_instance_impl.h" | 20 #include "content/renderer/pepper/ppapi_plugin_instance_impl.h" |
21 #include "content/renderer/pepper/ppb_gpu_blacklist_private_impl.h" | 21 #include "content/renderer/pepper/ppb_gpu_blacklist_private_impl.h" |
22 #include "content/renderer/pepper/ppb_image_data_impl.h" | 22 #include "content/renderer/pepper/ppb_image_data_impl.h" |
23 #include "content/renderer/pepper/ppb_proxy_impl.h" | 23 #include "content/renderer/pepper/ppb_proxy_impl.h" |
24 #include "content/renderer/pepper/ppb_scrollbar_impl.h" | 24 #include "content/renderer/pepper/ppb_scrollbar_impl.h" |
25 #include "content/renderer/pepper/ppb_uma_private_impl.h" | 25 #include "content/renderer/pepper/ppb_uma_private_impl.h" |
26 #include "content/renderer/pepper/ppb_var_deprecated_impl.h" | 26 #include "content/renderer/pepper/ppb_var_deprecated_impl.h" |
27 #include "content/renderer/pepper/ppb_video_decoder_impl.h" | 27 #include "content/renderer/pepper/ppb_video_decoder_impl.h" |
28 #include "ppapi/c/dev/ppb_audio_input_dev.h" | 28 #include "ppapi/c/dev/ppb_audio_input_dev.h" |
(...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 int retval = entry_points.initialize_module(pp_module(), &GetInterface); | 625 int retval = entry_points.initialize_module(pp_module(), &GetInterface); |
626 if (retval != 0) { | 626 if (retval != 0) { |
627 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; | 627 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; |
628 return false; | 628 return false; |
629 } | 629 } |
630 return true; | 630 return true; |
631 } | 631 } |
632 | 632 |
633 } // namespace ppapi | 633 } // namespace ppapi |
634 } // namespace webkit | 634 } // namespace webkit |
OLD | NEW |