Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: content/renderer/pepper/plugin_module.cc

Issue 859313002: Pepper: Define PPB_VideoEncoder API + Implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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"
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 #include "ppapi/c/ppb_text_input_controller.h" 86 #include "ppapi/c/ppb_text_input_controller.h"
87 #include "ppapi/c/ppb_udp_socket.h" 87 #include "ppapi/c/ppb_udp_socket.h"
88 #include "ppapi/c/ppb_url_loader.h" 88 #include "ppapi/c/ppb_url_loader.h"
89 #include "ppapi/c/ppb_url_request_info.h" 89 #include "ppapi/c/ppb_url_request_info.h"
90 #include "ppapi/c/ppb_url_response_info.h" 90 #include "ppapi/c/ppb_url_response_info.h"
91 #include "ppapi/c/ppb_var.h" 91 #include "ppapi/c/ppb_var.h"
92 #include "ppapi/c/ppb_var_array.h" 92 #include "ppapi/c/ppb_var_array.h"
93 #include "ppapi/c/ppb_var_array_buffer.h" 93 #include "ppapi/c/ppb_var_array_buffer.h"
94 #include "ppapi/c/ppb_var_dictionary.h" 94 #include "ppapi/c/ppb_var_dictionary.h"
95 #include "ppapi/c/ppb_video_decoder.h" 95 #include "ppapi/c/ppb_video_decoder.h"
96 #include "ppapi/c/ppb_video_encoder.h"
96 #include "ppapi/c/ppb_video_frame.h" 97 #include "ppapi/c/ppb_video_frame.h"
97 #include "ppapi/c/ppb_view.h" 98 #include "ppapi/c/ppb_view.h"
98 #include "ppapi/c/ppp.h" 99 #include "ppapi/c/ppp.h"
99 #include "ppapi/c/ppp_instance.h" 100 #include "ppapi/c/ppp_instance.h"
100 #include "ppapi/c/private/ppb_ext_crx_file_system_private.h" 101 #include "ppapi/c/private/ppb_ext_crx_file_system_private.h"
101 #include "ppapi/c/private/ppb_file_io_private.h" 102 #include "ppapi/c/private/ppb_file_io_private.h"
102 #include "ppapi/c/private/ppb_file_ref_private.h" 103 #include "ppapi/c/private/ppb_file_ref_private.h"
103 #include "ppapi/c/private/ppb_find_private.h" 104 #include "ppapi/c/private/ppb_find_private.h"
104 #include "ppapi/c/private/ppb_flash.h" 105 #include "ppapi/c/private/ppb_flash.h"
105 #include "ppapi/c/private/ppb_flash_clipboard.h" 106 #include "ppapi/c/private/ppb_flash_clipboard.h"
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 channel_handle, 721 channel_handle,
721 peer_pid, 722 peer_pid,
722 plugin_child_id, 723 plugin_child_id,
723 false)) // is_external = false 724 false)) // is_external = false
724 return scoped_refptr<PluginModule>(); 725 return scoped_refptr<PluginModule>();
725 726
726 return module; 727 return module;
727 } 728 }
728 729
729 } // namespace content 730 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_video_encoder_host.cc ('k') | content/renderer/pepper/resource_creation_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698