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

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

Issue 1128023009: ppapi: define PPB_AudioEncoder API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bbudge's nits & api release bump Created 5 years, 3 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 #include "ppapi/c/dev/ppb_var_deprecated.h" 47 #include "ppapi/c/dev/ppb_var_deprecated.h"
48 #include "ppapi/c/dev/ppb_video_capture_dev.h" 48 #include "ppapi/c/dev/ppb_video_capture_dev.h"
49 #include "ppapi/c/dev/ppb_video_decoder_dev.h" 49 #include "ppapi/c/dev/ppb_video_decoder_dev.h"
50 #include "ppapi/c/dev/ppb_view_dev.h" 50 #include "ppapi/c/dev/ppb_view_dev.h"
51 #include "ppapi/c/pp_module.h" 51 #include "ppapi/c/pp_module.h"
52 #include "ppapi/c/pp_resource.h" 52 #include "ppapi/c/pp_resource.h"
53 #include "ppapi/c/pp_var.h" 53 #include "ppapi/c/pp_var.h"
54 #include "ppapi/c/ppb_audio.h" 54 #include "ppapi/c/ppb_audio.h"
55 #include "ppapi/c/ppb_audio_buffer.h" 55 #include "ppapi/c/ppb_audio_buffer.h"
56 #include "ppapi/c/ppb_audio_config.h" 56 #include "ppapi/c/ppb_audio_config.h"
57 #include "ppapi/c/ppb_audio_encoder.h"
57 #include "ppapi/c/ppb_compositor.h" 58 #include "ppapi/c/ppb_compositor.h"
58 #include "ppapi/c/ppb_compositor_layer.h" 59 #include "ppapi/c/ppb_compositor_layer.h"
59 #include "ppapi/c/ppb_console.h" 60 #include "ppapi/c/ppb_console.h"
60 #include "ppapi/c/ppb_core.h" 61 #include "ppapi/c/ppb_core.h"
61 #include "ppapi/c/ppb_file_io.h" 62 #include "ppapi/c/ppb_file_io.h"
62 #include "ppapi/c/ppb_file_ref.h" 63 #include "ppapi/c/ppb_file_ref.h"
63 #include "ppapi/c/ppb_file_system.h" 64 #include "ppapi/c/ppb_file_system.h"
64 #include "ppapi/c/ppb_fullscreen.h" 65 #include "ppapi/c/ppb_fullscreen.h"
65 #include "ppapi/c/ppb_graphics_2d.h" 66 #include "ppapi/c/ppb_graphics_2d.h"
66 #include "ppapi/c/ppb_graphics_3d.h" 67 #include "ppapi/c/ppb_graphics_3d.h"
(...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after
816 channel_handle, 817 channel_handle,
817 peer_pid, 818 peer_pid,
818 plugin_child_id, 819 plugin_child_id,
819 false)) // is_external = false 820 false)) // is_external = false
820 return scoped_refptr<PluginModule>(); 821 return scoped_refptr<PluginModule>();
821 822
822 return module; 823 return module;
823 } 824 }
824 825
825 } // namespace content 826 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698