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

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

Issue 5783004: Keep deinlining stuff. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Well, it all compiles locally? 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_impl.h
diff --git a/webkit/glue/plugins/webplugin_impl.h b/webkit/glue/plugins/webplugin_impl.h
index d319df15ed5ac42f20bcccec1477f5b45c73fd44..27a692b90be4b2c736a2d964f5e6d53ccf9c6286 100644
--- a/webkit/glue/plugins/webplugin_impl.h
+++ b/webkit/glue/plugins/webplugin_impl.h
@@ -60,7 +60,7 @@ class WebPluginImpl : public WebPlugin,
const char* buf,
uint32 length);
- virtual WebPluginDelegate* delegate() { return delegate_; }
+ virtual WebPluginDelegate* delegate();
private:
// WebKit::WebPlugin methods:
@@ -105,9 +105,7 @@ class WebPluginImpl : public WebPlugin,
// WebPlugin implementation:
virtual void SetWindow(gfx::PluginWindowHandle window);
- virtual void SetAcceptsInputEvents(bool accepts) {
- accepts_input_events_ = accepts;
- }
+ virtual void SetAcceptsInputEvents(bool accepts);
virtual void WillDestroyWindow(gfx::PluginWindowHandle window);
#if defined(OS_WIN)
void SetWindowlessPumpEvent(HANDLE pump_messages_event) { }
@@ -237,7 +235,7 @@ class WebPluginImpl : public WebPlugin,
virtual void SetDeferResourceLoading(unsigned long resource_id, bool defer);
// Ignore in-process plugins mode for this flag.
- virtual bool IsOffTheRecord() { return false; }
+ virtual bool IsOffTheRecord();
// Handles HTTP multipart responses, i.e. responses received with a HTTP
// status code of 206.

Powered by Google App Engine
This is Rietveld 408576698