mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
libcef: Update due to underlying chromium changes.
- More webkit API refactoring. - Webkit GYP projects moved upstream. - Add ImplementsThreadSafeReferenceCounting() for all classes that use runnable methods. - Enable application cache and databases. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@51 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -37,7 +37,7 @@ void BrowserDragDelegate::OnDragSourceDrop() {
|
||||
gfx::Point client;
|
||||
gfx::Point screen;
|
||||
GetCursorPositions(source_hwnd_, &client, &screen);
|
||||
webview_->DragSourceEndedAt(client, screen, WebKit::WebDragOperationCopy);
|
||||
webview_->dragSourceEndedAt(client, screen, WebKit::WebDragOperationCopy);
|
||||
// TODO(snej): Pass the real drag operation instead
|
||||
}
|
||||
|
||||
@@ -45,5 +45,5 @@ void BrowserDragDelegate::OnDragSourceMove() {
|
||||
gfx::Point client;
|
||||
gfx::Point screen;
|
||||
GetCursorPositions(source_hwnd_, &client, &screen);
|
||||
webview_->DragSourceMovedTo(client, screen);
|
||||
webview_->dragSourceMovedTo(client, screen);
|
||||
}
|
||||
|
Reference in New Issue
Block a user