Searched refs:cursor_info (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/content/renderer/
H A Dcursor_utils.cc17 WebCursor::CursorInfo cursor_info; local
18 cursor.GetCursorInfo(&cursor_info);
20 webkit_cursor_info->type = cursor_info.type;
21 webkit_cursor_info->hotSpot = cursor_info.hotspot;
22 webkit_cursor_info->customImage = cursor_info.custom_image;
23 webkit_cursor_info->imageScaleFactor = cursor_info.image_scale_factor;
25 webkit_cursor_info->externalHandle = cursor_info.external_handle;
H A Drender_widget.cc1349 void RenderWidget::didChangeCursor(const WebCursorInfo& cursor_info) { argument
1352 InitializeCursorFromWebKitCursorInfo(&cursor, cursor_info);
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dmouse_cursor_monitor_win.cc86 CURSORINFO cursor_info; local
87 cursor_info.cbSize = sizeof(CURSORINFO);
88 if (!GetCursorInfo(&cursor_info)) {
93 if (last_cursor_ != cursor_info.hCursor) {
94 last_cursor_ = cursor_info.hCursor;
95 // Note that |cursor_info.hCursor| does not need to be freed.
97 CreateMouseCursorFromHCursor(desktop_dc_, cursor_info.hCursor));
105 DesktopVector position(cursor_info.ptScreenPos.x, cursor_info.ptScreenPos.y);
106 bool inside = cursor_info
[all...]
/external/chromium_org/content/common/cursors/
H A Dwebcursor.cc26 WebCursor::WebCursor(const CursorInfo& cursor_info) argument
32 InitFromCursorInfo(cursor_info);
53 void WebCursor::InitFromCursorInfo(const CursorInfo& cursor_info) { argument
57 if (cursor_info.external_handle) {
58 InitFromExternalCursor(cursor_info.external_handle);
63 type_ = cursor_info.type;
64 hotspot_ = cursor_info.hotspot;
66 SetCustomData(cursor_info.custom_image);
67 custom_scale_ = cursor_info.image_scale_factor;
72 void WebCursor::GetCursorInfo(CursorInfo* cursor_info) cons
[all...]
H A Dwebcursor.h72 explicit WebCursor(const CursorInfo& cursor_info);
80 void InitFromCursorInfo(const CursorInfo& cursor_info);
81 void GetCursorInfo(CursorInfo* cursor_info) const;
/external/chromium_org/third_party/sqlite/src/tool/
H A Dfragck.tcl55 proc cursor_info {arrayvar csr {up 0}} { procedure
109 cursor_info ci $csr $up
127 cursor_info ci $csr $i
/external/chromium_org/content/browser/renderer_host/input/
H A Dtouch_emulator.cc67 WebCursor::CursorInfo cursor_info; local
68 cursor_info.type = blink::WebCursorInfo::TypePointer;
69 pointer_cursor_.InitFromCursorInfo(cursor_info);
115 WebCursor::CursorInfo cursor_info; local
116 cursor_info.type = blink::WebCursorInfo::TypeCustom;
117 cursor_info.image_scale_factor = scale;
118 cursor_info.custom_image = cursor_image.AsBitmap();
119 cursor_info.hotspot =
122 cursor_info.external_handle = 0;
125 cursor->InitFromCursorInfo(cursor_info);
[all...]
/external/chromium_org/content/child/npapi/
H A Dwebplugin_delegate_impl_android.cc75 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) {
74 PlatformHandleInputEvent( const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) argument
H A Dwebplugin_delegate_impl_aura.cc62 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) {
61 PlatformHandleInputEvent( const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) argument
H A Dwebplugin_delegate_impl.cc262 WebCursor::CursorInfo* cursor_info) {
271 bool handled = PlatformHandleInputEvent(event, cursor_info);
260 HandleInputEvent( const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) argument
H A Dwebplugin_delegate_impl.h91 WebCursor::CursorInfo* cursor_info) OVERRIDE;
275 WebCursor::CursorInfo* cursor_info);
H A Dwebplugin_delegate_impl_win.cc1205 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) {
1206 DCHECK(cursor_info != NULL);
1284 current_windowless_cursor_.GetCursorInfo(cursor_info);
1204 PlatformHandleInputEvent( const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) argument
/external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
H A Dscreen_capturer_win_gdi.cc285 CURSORINFO cursor_info; local
286 cursor_info.cbSize = sizeof(CURSORINFO);
287 if (!GetCursorInfo(&cursor_info)) {
292 // Note that |cursor_info.hCursor| does not need to be freed.
294 CreateMouseCursorFromHCursor(desktop_dc_, cursor_info.hCursor));
/external/chromium_org/content/renderer/pepper/
H A Dpepper_webplugin_impl.h57 blink::WebCursorInfo& cursor_info);
H A Dpepper_webplugin_impl.cc184 blink::WebCursorInfo& cursor_info) {
187 return instance_->HandleInputEvent(event, &cursor_info);
183 handleInputEvent(const blink::WebInputEvent& event, blink::WebCursorInfo& cursor_info) argument
H A Dpepper_plugin_instance_impl.cc1123 WebCursorInfo* cursor_info) {
1195 *cursor_info = *cursor_;
2209 // |cursor_info| is ignored since it is hidden when the mouse is locked.
2210 blink::WebCursorInfo cursor_info; local
2211 HandleInputEvent(event, &cursor_info);
1121 HandleInputEvent( const blink::WebInputEvent& event, WebCursorInfo* cursor_info) argument
H A Dpepper_plugin_instance_impl.h201 blink::WebCursorInfo* cursor_info);
/external/chromium_org/content/plugin/
H A Dwebplugin_delegate_stub.cc279 WebCursor::CursorInfo cursor_info; local
280 *handled = delegate_->HandleInputEvent(*event, &cursor_info);
281 cursor->InitFromCursorInfo(cursor_info);
/external/chromium_org/components/plugins/renderer/
H A Dwebview_plugin.h94 blink::WebCursorInfo& cursor_info);
/external/chromium_org/content/browser/devtools/
H A Drenderer_overrides_handler.cc990 WebCursor::CursorInfo cursor_info; local
991 cursor_info.type = blink::WebCursorInfo::TypePointer;
992 pointer_cursor.InitFromCursorInfo(cursor_info);
1178 WebCursor::CursorInfo cursor_info; local
1179 cursor_info.type = blink::WebCursorInfo::TypeCustom;
1180 cursor_info.image_scale_factor = device_scale_factor;
1181 cursor_info.custom_image = result;
1182 cursor_info.hotspot =
1186 cursor_info.external_handle = 0;
1189 cursor.InitFromCursorInfo(cursor_info);
[all...]
/external/chromium_org/content/renderer/npapi/
H A Dwebplugin_impl.cc406 const WebInputEvent& event, WebCursorInfo& cursor_info) {
413 cursor_info.type = web_cursor_info.type;
414 cursor_info.hotSpot = web_cursor_info.hotspot;
415 cursor_info.customImage = web_cursor_info.custom_image;
416 cursor_info.imageScaleFactor = web_cursor_info.image_scale_factor;
418 cursor_info.externalHandle = web_cursor_info.external_handle;
405 handleInputEvent( const WebInputEvent& event, WebCursorInfo& cursor_info) argument
H A Dwebplugin_impl.h84 const blink::WebInputEvent& event, blink::WebCursorInfo& cursor_info);
H A Dwebplugin_delegate_proxy.cc777 WebCursor::CursorInfo* cursor_info) {
775 HandleInputEvent( const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) argument
/external/chromium_org/content/renderer/browser_plugin/
H A Dbrowser_plugin.h100 blink::WebCursorInfo& cursor_info) OVERRIDE;
H A Dbrowser_plugin.cc499 blink::WebCursorInfo& cursor_info) {
521 GetWebKitCursorInfo(cursor_, &cursor_info);
498 handleInputEvent(const blink::WebInputEvent& event, blink::WebCursorInfo& cursor_info) argument

Completed in 614 milliseconds