Searched refs:cursor_info (Results 1 - 24 of 24) 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.cc1245 void RenderWidget::didChangeCursor(const WebCursorInfo& cursor_info) { argument
1248 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.cc66 WebCursor::CursorInfo cursor_info; local
67 cursor_info.type = blink::WebCursorInfo::TypePointer;
68 pointer_cursor_.InitFromCursorInfo(cursor_info);
116 WebCursor::CursorInfo cursor_info; local
117 cursor_info.type = blink::WebCursorInfo::TypeCustom;
118 cursor_info.image_scale_factor = scale;
119 cursor_info.custom_image = cursor_image.AsBitmap();
120 cursor_info.hotspot =
123 cursor_info.external_handle = 0;
126 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.cc1242 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) {
1243 DCHECK(cursor_info != NULL);
1321 current_windowless_cursor_.GetCursorInfo(cursor_info);
1241 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.cc282 CURSORINFO cursor_info; local
283 cursor_info.cbSize = sizeof(CURSORINFO);
284 if (!GetCursorInfo(&cursor_info)) {
289 // Note that |cursor_info.hCursor| does not need to be freed.
291 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.cc183 blink::WebCursorInfo& cursor_info) {
186 return instance_->HandleInputEvent(event, &cursor_info);
182 handleInputEvent(const blink::WebInputEvent& event, blink::WebCursorInfo& cursor_info) argument
H A Dpepper_plugin_instance_impl.cc1090 WebCursorInfo* cursor_info) {
1162 *cursor_info = *cursor_;
2158 // |cursor_info| is ignored since it is hidden when the mouse is locked.
2159 blink::WebCursorInfo cursor_info; local
2160 HandleInputEvent(event, &cursor_info);
1088 HandleInputEvent( const blink::WebInputEvent& event, WebCursorInfo* cursor_info) argument
H A Dpepper_plugin_instance_impl.h191 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.h91 blink::WebCursorInfo& cursor_info);
/external/chromium_org/content/renderer/npapi/
H A Dwebplugin_impl.cc407 const WebInputEvent& event, WebCursorInfo& cursor_info) {
414 cursor_info.type = web_cursor_info.type;
415 cursor_info.hotSpot = web_cursor_info.hotspot;
416 cursor_info.customImage = web_cursor_info.custom_image;
417 cursor_info.imageScaleFactor = web_cursor_info.image_scale_factor;
419 cursor_info.externalHandle = web_cursor_info.external_handle;
406 handleInputEvent( const WebInputEvent& event, WebCursorInfo& cursor_info) argument
H A Dwebplugin_impl.h87 const blink::WebInputEvent& event, blink::WebCursorInfo& cursor_info);
H A Dwebplugin_delegate_proxy.cc771 WebCursor::CursorInfo* cursor_info) {
769 HandleInputEvent( const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) argument
/external/chromium_org/content/renderer/browser_plugin/
H A Dbrowser_plugin.h134 blink::WebCursorInfo& cursor_info) OVERRIDE;
H A Dbrowser_plugin.cc754 blink::WebCursorInfo& cursor_info) {
819 GetWebKitCursorInfo(cursor_, &cursor_info);
753 handleInputEvent(const blink::WebInputEvent& event, blink::WebCursorInfo& cursor_info) argument

Completed in 454 milliseconds