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

Unified Diff: webkit/glue/plugins/webplugin_audio_device_delegate.h

Issue 5794003: Deinline even more destructors. (Closed) Base URL: svn://svn.chromium.org/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 side-by-side diff with in-line comments
Download patch
Index: webkit/glue/plugins/webplugin_audio_device_delegate.h
diff --git a/webkit/glue/plugins/webplugin_audio_device_delegate.h b/webkit/glue/plugins/webplugin_audio_device_delegate.h
index 3f3724687d99c7dd1bd4e92bf95494c88fbccb46..de854335d14e58554072c6321ee11012161f5383 100644
--- a/webkit/glue/plugins/webplugin_audio_device_delegate.h
+++ b/webkit/glue/plugins/webplugin_audio_device_delegate.h
@@ -15,35 +15,21 @@ namespace webkit_glue {
// "regular" plugin delegate while being overridden by the "pepper" one.
class WebPluginAudioDeviceDelegate {
public:
- virtual NPError DeviceAudioQueryCapability(int32 capability, int32* value) {
- return NPERR_GENERIC_ERROR;
- }
+ virtual NPError DeviceAudioQueryCapability(int32 capability, int32* value);
virtual NPError DeviceAudioQueryConfig(
const NPDeviceContextAudioConfig* request,
- NPDeviceContextAudioConfig* obtain) {
- return NPERR_GENERIC_ERROR;
- }
+ NPDeviceContextAudioConfig* obtain);
virtual NPError DeviceAudioInitializeContext(
const NPDeviceContextAudioConfig* config,
- NPDeviceContextAudio* context) {
- return NPERR_GENERIC_ERROR;
- }
+ NPDeviceContextAudio* context);
virtual NPError DeviceAudioSetStateContext(NPDeviceContextAudio* context,
- int32 state, intptr_t value) {
- return NPERR_GENERIC_ERROR;
- }
+ int32 state, intptr_t value);
virtual NPError DeviceAudioGetStateContext(NPDeviceContextAudio* context,
- int32 state, intptr_t* value) {
- return NPERR_GENERIC_ERROR;
- }
+ int32 state, intptr_t* value);
virtual NPError DeviceAudioFlushContext(
NPP id, NPDeviceContextAudio* context,
- NPDeviceFlushContextCallbackPtr callback, void* user_data) {
- return NPERR_GENERIC_ERROR;
- }
- virtual NPError DeviceAudioDestroyContext(NPDeviceContextAudio* context) {
- return NPERR_GENERIC_ERROR;
- }
+ NPDeviceFlushContextCallbackPtr callback, void* user_data);
+ virtual NPError DeviceAudioDestroyContext(NPDeviceContextAudio* context);
protected:
WebPluginAudioDeviceDelegate() {}
« no previous file with comments | « webkit/glue/plugins/webplugin_3d_device_delegate.cc ('k') | webkit/glue/plugins/webplugin_audio_device_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698