diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-18 20:32:51 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-18 20:32:51 +0000 |
commit | 5dfbf1abfc81152f4e10539f99ce37ce19116aa1 (patch) | |
tree | cdb69a21f8da0e54b6855c42d45fd634e5b667c6 /webkit/glue/webview_delegate.h | |
parent | ac09c92224d0ee428b2c667841e5ba007075e5c3 (diff) | |
download | chromium_src-5dfbf1abfc81152f4e10539f99ce37ce19116aa1.zip chromium_src-5dfbf1abfc81152f4e10539f99ce37ce19116aa1.tar.gz chromium_src-5dfbf1abfc81152f4e10539f99ce37ce19116aa1.tar.bz2 |
Remove some unused code. Removes a couple of WebViewDelegate methods
that should really just be public methods on TestWebViewDelegate.
R=dglazkov
Review URL: http://codereview.chromium.org/79080
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14008 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webview_delegate.h')
-rw-r--r-- | webkit/glue/webview_delegate.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/webkit/glue/webview_delegate.h b/webkit/glue/webview_delegate.h index b37c718..1a170b3 100644 --- a/webkit/glue/webview_delegate.h +++ b/webkit/glue/webview_delegate.h @@ -134,12 +134,6 @@ class WebViewDelegate : virtual public WebWidgetDelegate { return NULL; } - // This method is called when default plugin has been correctly created and - // initialized, and found that the missing plugin is available to install or - // user has started installation. - virtual void OnMissingPluginStatus(WebPluginDelegate* delegate, int status) { - } - // This method is called to open a URL in the specified manner. virtual void OpenURL(WebView* webview, const GURL& url, const GURL& referrer, @@ -164,13 +158,6 @@ class WebViewDelegate : virtual public WebWidgetDelegate { const WebKit::WebRect& selection) { } - // This function is called to retrieve a resource bitmap from the - // renderer that was cached as a result of the renderer receiving a - // ViewMsg_Preload_Bitmap message from the browser. - virtual const SkBitmap* GetPreloadedResourceBitmap(int resource_id) { - return NULL; - } - // Returns whether this WebView was opened by a user gesture. virtual bool WasOpenedByUserGesture(WebView* webview) const { return true; @@ -666,8 +653,6 @@ class WebViewDelegate : virtual public WebWidgetDelegate { return true; } - virtual void SetSmartInsertDeleteEnabled(bool enabled); - virtual bool IsSelectTrailingWhitespaceEnabled() { #if defined(OS_WIN) return true; @@ -676,8 +661,6 @@ class WebViewDelegate : virtual public WebWidgetDelegate { #endif } - virtual void SetSelectTrailingWhitespaceEnabled(bool enabled); - virtual void DidBeginEditing() { } virtual void DidChangeSelection(bool is_empty_selection) { } virtual void DidChangeContents() { } |