summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webview_delegate.h
diff options
context:
space:
mode:
authortc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-10 22:34:51 +0000
committertc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-10 22:34:51 +0000
commit80d96fa5cd180d0fdda215f8ed52cfd39ef59423 (patch)
tree3f6f43b8d76a6d476f29a458b842aedf76d9306e /webkit/glue/webview_delegate.h
parent26ea6c409fedeabdabb53f41fcc80b79d2575cf9 (diff)
downloadchromium_src-80d96fa5cd180d0fdda215f8ed52cfd39ef59423.zip
chromium_src-80d96fa5cd180d0fdda215f8ed52cfd39ef59423.tar.gz
chromium_src-80d96fa5cd180d0fdda215f8ed52cfd39ef59423.tar.bz2
Do not allow URL drops on app windows to cause a navigation away
from the currently loaded site. We are careful in this patch to continue to allow dropping URLs in text fields within the app window, and behavior for normal browser windows remains as before. There is a slight glitch when dragging a to an app window on the border of the window. Even though it is very brief, it is still disturbing. BUG=7171 TEST=Open Chrome (1), load google.com. Open Chrome (2), load yahoo.com. Drag a link from 1 to 2 and a link from 2 to 1 (both allowed). Create an app shortcut from 1, drag a link from 1 to 2 (allowed) and a link from 2 to 1 (denied). Verify that link scan be dragged to the omnibox and to text fields. Patch by Chase Phillips <chase@chromium.org> via http://codereview.chromium.org/119298 Review URL: http://codereview.chromium.org/121003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18100 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webview_delegate.h')
-rw-r--r--webkit/glue/webview_delegate.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/webkit/glue/webview_delegate.h b/webkit/glue/webview_delegate.h
index a4b5061..7609eff 100644
--- a/webkit/glue/webview_delegate.h
+++ b/webkit/glue/webview_delegate.h
@@ -181,6 +181,12 @@ class WebViewDelegate : virtual public WebWidgetDelegate {
// FrameLoaderClient -------------------------------------------------------
+ virtual bool CanAcceptLoadDrops() const {
+ // Always return true here so layout tests (which use the default WebView
+ // delegate) continue to pass.
+ return true;
+ }
+
// Notifies the delegate that a load has begun.
virtual void DidStartLoading(WebView* webview) {
}