summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/webplugin_delegate_proxy.cc
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-01 05:44:17 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-01 05:44:17 +0000
commit9b7779b1a7559e4af1720408beb6e0b931e8435a (patch)
treee4fff86e87bcf539edcda3c3f73175a1d97e09ea /chrome/renderer/webplugin_delegate_proxy.cc
parent00c4079ca3b6753db530bc8c5522793f25aa6619 (diff)
downloadchromium_src-9b7779b1a7559e4af1720408beb6e0b931e8435a.zip
chromium_src-9b7779b1a7559e4af1720408beb6e0b931e8435a.tar.gz
chromium_src-9b7779b1a7559e4af1720408beb6e0b931e8435a.tar.bz2
Move various methods from glue/webview.h to api/public/WebView.h
I'll re-order the methods in webview_impl.cc in a follow-up CL. I wanted to keep this one easy to review. SetBackForwardListSize is no longer necessary given that BackForwardListChromium.cpp doesn't care about its capacity. R=dglazkov BUG=10033 TEST=none Review URL: http://codereview.chromium.org/251051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27705 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/webplugin_delegate_proxy.cc')
-rw-r--r--chrome/renderer/webplugin_delegate_proxy.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/renderer/webplugin_delegate_proxy.cc b/chrome/renderer/webplugin_delegate_proxy.cc
index 52ee244..af4760b 100644
--- a/chrome/renderer/webplugin_delegate_proxy.cc
+++ b/chrome/renderer/webplugin_delegate_proxy.cc
@@ -964,7 +964,7 @@ void WebPluginDelegateProxy::OnSetDropEffect(const NPVariant_Param& object,
if (!drag_id || !WebBindings::isDragEvent(event))
return;
- *success = webview->SetDropEffect(effect != 0);
+ *success = webview->setDropEffect(effect != 0);
}
void WebPluginDelegateProxy::OnMissingPluginStatus(int status) {