diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-11 18:04:59 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-11 18:04:59 +0000 |
commit | efce17b6c7af96f3f2db55342b94ce44246cfb36 (patch) | |
tree | 23c31ea7da9fbf66bda8e8009f1b1c997411672a /webkit/api | |
parent | 9ccb18d691f7f70292ed19a83dc1381f9baeea97 (diff) | |
download | chromium_src-efce17b6c7af96f3f2db55342b94ce44246cfb36.zip chromium_src-efce17b6c7af96f3f2db55342b94ce44246cfb36.tar.gz chromium_src-efce17b6c7af96f3f2db55342b94ce44246cfb36.tar.bz2 |
Eliminate some methods.
Removes WebFrame::reportFindInPageSelection since it was only
ever called by WebFrameImpl. Now it is a private method.
Removes WebViewDelegate::DownloadUrl since it can be expressed
using WebFrameClient::loadURLExternally.
R=dglazkov
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/201092
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25987 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/api')
-rw-r--r-- | webkit/api/public/WebFrame.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/webkit/api/public/WebFrame.h b/webkit/api/public/WebFrame.h index 6cde878..50b50b3 100644 --- a/webkit/api/public/WebFrame.h +++ b/webkit/api/public/WebFrame.h @@ -408,13 +408,6 @@ namespace WebKit { // about the new count. virtual void increaseMatchCount(int count, int identifier) = 0; - // Notifies the WebViewClient about a new selection rect. This will - // result in the browser getting notified. For more information see - // WebViewClient. - virtual void reportFindInPageSelection(const WebRect& selectionRect, - int activeMatchOrdinal, - int identifier) = 0; - // This function is called on the main frame to reset the total number // of matches found during the scoping effort. virtual void resetMatchCount() = 0; |