| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index 747dcf04be9c75b8a3735805bbe926432c356b10..1cf0ee81398ba81dbcb2525dd6039f07301a058d 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -1870,18 +1870,6 @@ void WebContentsImpl::OnCloseStarted() {
|
| close_start_time_ = base::TimeTicks::Now();
|
| }
|
|
|
| -bool WebContentsImpl::ShouldAcceptDragAndDrop() const {
|
| -#if defined(OS_CHROMEOS)
|
| - // ChromeOS panels (pop-ups) do not take drag-n-drop.
|
| - // See http://crosbug.com/2413
|
| - if (delegate_ && delegate_->IsPopupOrPanel(this))
|
| - return false;
|
| - return true;
|
| -#else
|
| - return true;
|
| -#endif
|
| -}
|
| -
|
| void WebContentsImpl::SystemDragEnded() {
|
| if (GetRenderViewHost())
|
| GetRenderViewHostImpl()->DragSourceSystemDragEnded();
|
|
|