summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell/drag_delegate.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/tools/test_shell/drag_delegate.cc')
-rw-r--r--webkit/tools/test_shell/drag_delegate.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/tools/test_shell/drag_delegate.cc b/webkit/tools/test_shell/drag_delegate.cc
index d9c45cd..0fc97a3 100644
--- a/webkit/tools/test_shell/drag_delegate.cc
+++ b/webkit/tools/test_shell/drag_delegate.cc
@@ -35,7 +35,7 @@ void TestDragDelegate::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
}
@@ -43,5 +43,5 @@ void TestDragDelegate::OnDragSourceMove() {
gfx::Point client;
gfx::Point screen;
GetCursorPositions(source_hwnd_, &client, &screen);
- webview_->DragSourceMovedTo(client, screen);
+ webview_->dragSourceMovedTo(client, screen);
}