/external/chromium_org/content/browser/browser_plugin/ |
D | browser_plugin_embedder.cc | 157 void BrowserPluginEmbedder::DragSourceEndedAt(int client_x, int client_y, in DragSourceEndedAt() argument 163 client_y - guest_offset.y(), screen_x, screen_y, operation); in DragSourceEndedAt() 167 void BrowserPluginEmbedder::DragSourceMovedTo(int client_x, int client_y, in DragSourceMovedTo() argument 173 client_y - guest_offset.y(), screen_x, screen_y); in DragSourceMovedTo()
|
D | browser_plugin_embedder.h | 77 void DragSourceEndedAt(int client_x, int client_y, int screen_x, 80 void DragSourceMovedTo(int client_x, int client_y,
|
D | browser_plugin_guest.h | 287 void DragSourceEndedAt(int client_x, int client_y, int screen_x, 290 void DragSourceMovedTo(int client_x, int client_y,
|
D | browser_plugin_guest.cc | 977 void BrowserPluginGuest::DragSourceEndedAt(int client_x, int client_y, in DragSourceEndedAt() argument 979 web_contents()->GetRenderViewHost()->DragSourceEndedAt(client_x, client_y, in DragSourceEndedAt() 983 void BrowserPluginGuest::DragSourceMovedTo(int client_x, int client_y, in DragSourceMovedTo() argument 985 web_contents()->GetRenderViewHost()->DragSourceMovedTo(client_x, client_y, in DragSourceMovedTo()
|
/external/chromium_org/content/public/browser/ |
D | render_view_host.h | 122 int client_x, int client_y, int screen_x, int screen_y, 128 int client_x, int client_y, int screen_x, int screen_y) = 0;
|
/external/chromium_org/content/browser/renderer_host/ |
D | render_view_host_impl.h | 149 int client_x, int client_y, int screen_x, int screen_y, 152 int client_x, int client_y, int screen_x, int screen_y) OVERRIDE;
|
D | render_view_host_impl.cc | 1053 int client_x, int client_y, int screen_x, int screen_y, in DragSourceEndedAt() argument 1057 gfx::Point(client_x, client_y), in DragSourceEndedAt() 1063 int client_x, int client_y, int screen_x, int screen_y) { in DragSourceMovedTo() argument 1066 gfx::Point(client_x, client_y), in DragSourceMovedTo()
|
/external/chromium_org/content/browser/web_contents/ |
D | web_contents_impl.cc | 1917 void WebContentsImpl::DragSourceEndedAt(int client_x, int client_y, in DragSourceEndedAt() argument 1920 browser_plugin_embedder_->DragSourceEndedAt(client_x, client_y, in DragSourceEndedAt() 1923 GetRenderViewHostImpl()->DragSourceEndedAt(client_x, client_y, in DragSourceEndedAt() 1927 void WebContentsImpl::DragSourceMovedTo(int client_x, int client_y, in DragSourceMovedTo() argument 1930 browser_plugin_embedder_->DragSourceMovedTo(client_x, client_y, in DragSourceMovedTo() 1933 GetRenderViewHostImpl()->DragSourceMovedTo(client_x, client_y, in DragSourceMovedTo()
|
D | web_contents_impl.h | 161 void DragSourceEndedAt(int client_x, int client_y, int screen_x, in NON_EXPORTED_BASE() 166 void DragSourceMovedTo(int client_x, int client_y, in NON_EXPORTED_BASE()
|