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

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

Issue 1151973003: ppapi: implement PPB_AudioEncoder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 #include "ppapi/c/dev/ppb_video_decoder_dev.h" 52 #include "ppapi/c/dev/ppb_video_decoder_dev.h"
53 #include "ppapi/c/dev/ppb_view_dev.h" 53 #include "ppapi/c/dev/ppb_view_dev.h"
54 #include "ppapi/c/dev/ppb_widget_dev.h" 54 #include "ppapi/c/dev/ppb_widget_dev.h"
55 #include "ppapi/c/dev/ppb_zoom_dev.h" 55 #include "ppapi/c/dev/ppb_zoom_dev.h"
56 #include "ppapi/c/pp_module.h" 56 #include "ppapi/c/pp_module.h"
57 #include "ppapi/c/pp_resource.h" 57 #include "ppapi/c/pp_resource.h"
58 #include "ppapi/c/pp_var.h" 58 #include "ppapi/c/pp_var.h"
59 #include "ppapi/c/ppb_audio.h" 59 #include "ppapi/c/ppb_audio.h"
60 #include "ppapi/c/ppb_audio_buffer.h" 60 #include "ppapi/c/ppb_audio_buffer.h"
61 #include "ppapi/c/ppb_audio_config.h" 61 #include "ppapi/c/ppb_audio_config.h"
62 #include "ppapi/c/ppb_audio_encoder.h"
62 #include "ppapi/c/ppb_compositor.h" 63 #include "ppapi/c/ppb_compositor.h"
63 #include "ppapi/c/ppb_compositor_layer.h" 64 #include "ppapi/c/ppb_compositor_layer.h"
64 #include "ppapi/c/ppb_console.h" 65 #include "ppapi/c/ppb_console.h"
65 #include "ppapi/c/ppb_core.h" 66 #include "ppapi/c/ppb_core.h"
66 #include "ppapi/c/ppb_file_io.h" 67 #include "ppapi/c/ppb_file_io.h"
67 #include "ppapi/c/ppb_file_ref.h" 68 #include "ppapi/c/ppb_file_ref.h"
68 #include "ppapi/c/ppb_file_system.h" 69 #include "ppapi/c/ppb_file_system.h"
69 #include "ppapi/c/ppb_fullscreen.h" 70 #include "ppapi/c/ppb_fullscreen.h"
70 #include "ppapi/c/ppb_graphics_2d.h" 71 #include "ppapi/c/ppb_graphics_2d.h"
71 #include "ppapi/c/ppb_graphics_3d.h" 72 #include "ppapi/c/ppb_graphics_3d.h"
(...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 channel_handle, 804 channel_handle,
804 peer_pid, 805 peer_pid,
805 plugin_child_id, 806 plugin_child_id,
806 false)) // is_external = false 807 false)) // is_external = false
807 return scoped_refptr<PluginModule>(); 808 return scoped_refptr<PluginModule>();
808 809
809 return module; 810 return module;
810 } 811 }
811 812
812 } // namespace content 813 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_audio_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