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

Side by Side Diff: webkit/glue/plugins/webplugin_audio_device_delegate.cc

Issue 6012002: Move the NPAPI files from webkit/glue/plugins to webkit/plugins/npapi and put... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "webkit/glue/plugins/webplugin_audio_device_delegate.h"
6
7 namespace webkit_glue {
8
9 NPError WebPluginAudioDeviceDelegate::DeviceAudioQueryCapability(
10 int32 capability, int32* value) {
11 return NPERR_GENERIC_ERROR;
12 }
13
14 NPError WebPluginAudioDeviceDelegate::DeviceAudioQueryConfig(
15 const NPDeviceContextAudioConfig* request,
16 NPDeviceContextAudioConfig* obtain) {
17 return NPERR_GENERIC_ERROR;
18 }
19
20 NPError WebPluginAudioDeviceDelegate::DeviceAudioInitializeContext(
21 const NPDeviceContextAudioConfig* config,
22 NPDeviceContextAudio* context) {
23 return NPERR_GENERIC_ERROR;
24 }
25
26 NPError WebPluginAudioDeviceDelegate::DeviceAudioSetStateContext(
27 NPDeviceContextAudio* context,
28 int32 state, intptr_t value) {
29 return NPERR_GENERIC_ERROR;
30 }
31
32 NPError WebPluginAudioDeviceDelegate::DeviceAudioGetStateContext(
33 NPDeviceContextAudio* context,
34 int32 state, intptr_t* value) {
35 return NPERR_GENERIC_ERROR;
36 }
37
38 NPError WebPluginAudioDeviceDelegate::DeviceAudioFlushContext(
39 NPP id, NPDeviceContextAudio* context,
40 NPDeviceFlushContextCallbackPtr callback, void* user_data) {
41 return NPERR_GENERIC_ERROR;
42 }
43
44 NPError WebPluginAudioDeviceDelegate::DeviceAudioDestroyContext(
45 NPDeviceContextAudio* context) {
46 return NPERR_GENERIC_ERROR;
47 }
48
49
50 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/plugins/webplugin_audio_device_delegate.h ('k') | webkit/glue/plugins/webplugin_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698