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

Unified Diff: webkit/glue/plugins/webplugin_2d_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
« no previous file with comments | « webkit/glue/plugins/plugin_stream_url.cc ('k') | webkit/glue/plugins/webplugin_2d_device_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/webplugin_2d_device_delegate.h
diff --git a/webkit/glue/plugins/webplugin_2d_device_delegate.h b/webkit/glue/plugins/webplugin_2d_device_delegate.h
index 69bd53a35358e6d8b097057346b18c4aeed24586..e18c2fdfde24f27c04f35b72ce6db06e6f9a8cbc 100644
--- a/webkit/glue/plugins/webplugin_2d_device_delegate.h
+++ b/webkit/glue/plugins/webplugin_2d_device_delegate.h
@@ -15,37 +15,23 @@ namespace webkit_glue {
// "regular" plugin delegate while being overridden by the "pepper" one.
class WebPlugin2DDeviceDelegate {
public:
- virtual NPError Device2DQueryCapability(int32 capability, int32* value) {
- return NPERR_GENERIC_ERROR;
- }
+ virtual NPError Device2DQueryCapability(int32 capability, int32* value);
virtual NPError Device2DQueryConfig(const NPDeviceContext2DConfig* request,
- NPDeviceContext2DConfig* obtain) {
- return NPERR_GENERIC_ERROR;
- }
+ NPDeviceContext2DConfig* obtain);
virtual NPError Device2DInitializeContext(
const NPDeviceContext2DConfig* config,
- NPDeviceContext2D* context) {
- return NPERR_GENERIC_ERROR;
- }
+ NPDeviceContext2D* context);
virtual NPError Device2DSetStateContext(NPDeviceContext2D* context,
int32 state,
- intptr_t value) {
- return NPERR_GENERIC_ERROR;
- }
+ intptr_t value);
virtual NPError Device2DGetStateContext(NPDeviceContext2D* context,
int32 state,
- intptr_t* value) {
- return NPERR_GENERIC_ERROR;
- }
+ intptr_t* value);
virtual NPError Device2DFlushContext(NPP id,
NPDeviceContext2D* context,
NPDeviceFlushContextCallbackPtr callback,
- void* user_data) {
- return NPERR_GENERIC_ERROR;
- }
- virtual NPError Device2DDestroyContext(NPDeviceContext2D* context) {
- return NPERR_GENERIC_ERROR;
- }
+ void* user_data);
+ virtual NPError Device2DDestroyContext(NPDeviceContext2D* context);
protected:
WebPlugin2DDeviceDelegate() {}
« no previous file with comments | « webkit/glue/plugins/plugin_stream_url.cc ('k') | webkit/glue/plugins/webplugin_2d_device_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698