Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(514)

Unified Diff: third_party/WebKit/Source/web/WebViewImpl.cpp

Issue 2475443003: Drag-and-drop: Move startDrag out of WebView/RenderView. (Closed)
Patch Set: Removed unneeded declarations. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.h ('k') | third_party/WebKit/public/web/WebViewClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebViewImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
index c97a9a95ed6b3ccf7fba25d8249fea9ba94658d5..2c685304358d95ccad52de936e3b62ffd660cd0a 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
@@ -3951,19 +3951,6 @@ bool WebViewImpl::useExternalPopupMenus() {
return shouldUseExternalPopupMenus;
}
-void WebViewImpl::startDragging(LocalFrame* frame,
- const WebDragData& dragData,
- WebDragOperationsMask mask,
- const WebImage& dragImage,
- const WebPoint& dragImageOffset) {
- if (!m_client)
- return;
- DCHECK(!m_doingDragAndDrop);
- m_doingDragAndDrop = true;
- m_client->startDragging(WebLocalFrameImpl::fromFrame(frame), dragData, mask,
- dragImage, dragImageOffset);
-}
-
void WebViewImpl::setIgnoreInputEvents(bool newValue) {
DCHECK_NE(m_ignoreInputEvents, newValue);
m_ignoreInputEvents = newValue;
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.h ('k') | third_party/WebKit/public/web/WebViewClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698