Index: webkit/glue/plugins/webplugin_delegate.h |
diff --git a/webkit/glue/plugins/webplugin_delegate.h b/webkit/glue/plugins/webplugin_delegate.h |
index 901cdeaf814402484fb61093daa1e36141e75ce1..ac7bb5cdc7a926558b298c62e0b5e4d8f9d12b63 100644 |
--- a/webkit/glue/plugins/webplugin_delegate.h |
+++ b/webkit/glue/plugins/webplugin_delegate.h |
@@ -143,22 +143,22 @@ class WebPluginDelegate : public WebPlugin2DDeviceDelegate, |
// See WebPluginContainerImpl's description of the interface. |
virtual bool StartFind(const string16& search_text, |
bool case_sensitive, |
- int identifier) { return false; } |
+ int identifier); |
virtual void SelectFindResult(bool forward) {} |
virtual void StopFind() {} |
virtual void NumberOfFindResultsChanged(int total, bool final_result) {} |
virtual void SelectedFindResultChanged(int index) {} |
- virtual NPWidgetExtensions* GetWidgetExtensions() { return NULL; } |
- virtual bool SetCursor(NPCursorType type) { return false; } |
- virtual NPFontExtensions* GetFontExtensions() { return NULL; } |
+ virtual NPWidgetExtensions* GetWidgetExtensions(); |
+ virtual bool SetCursor(NPCursorType type); |
+ virtual NPFontExtensions* GetFontExtensions(); |
// Used for zooming of full page plugins. 0 means reset, while -1 means zoom |
// out and +1 means zoom in. |
virtual void SetZoomFactor(float scale, bool text_only) {} |
// Gets the selected text, if any. |
- virtual bool HasSelection() const { return false; } |
- virtual string16 GetSelectionAsText() const { return string16(); } |
- virtual string16 GetSelectionAsMarkup() const { return string16(); } |
+ virtual bool HasSelection() const; |
+ virtual string16 GetSelectionAsText() const; |
+ virtual string16 GetSelectionAsMarkup() const; |
}; |
} // namespace webkit_glue |