Home
last modified time | relevance | path

Searched refs:client_y (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/content/browser/browser_plugin/
Dbrowser_plugin_embedder.cc157 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()
Dbrowser_plugin_embedder.h77 void DragSourceEndedAt(int client_x, int client_y, int screen_x,
80 void DragSourceMovedTo(int client_x, int client_y,
Dbrowser_plugin_guest.h287 void DragSourceEndedAt(int client_x, int client_y, int screen_x,
290 void DragSourceMovedTo(int client_x, int client_y,
Dbrowser_plugin_guest.cc977 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/
Drender_view_host.h122 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/
Drender_view_host_impl.h149 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;
Drender_view_host_impl.cc1053 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/
Dweb_contents_impl.cc1917 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()
Dweb_contents_impl.h161 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()