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

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

Issue 365153003: Pepper: add PPB_VideoEncoder interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update API to prevent the user from dealing with buffer management Created 6 years, 5 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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 channel_handle, 714 channel_handle,
714 peer_pid, 715 peer_pid,
715 plugin_child_id, 716 plugin_child_id,
716 false)) // is_external = false 717 false)) // is_external = false
717 return scoped_refptr<PluginModule>(); 718 return scoped_refptr<PluginModule>();
718 719
719 return module; 720 return module;
720 } 721 }
721 722
722 } // namespace content 723 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/component_updater/ppapi_utils.cc ('k') | content/renderer/pepper/resource_creation_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698