Home | History | Annotate | Download | only in glue

Lines Matching full:cursor_info

22 WebCursor::WebCursor(const WebCursorInfo& cursor_info)
25 InitFromCursorInfo(cursor_info);
46 void WebCursor::InitFromCursorInfo(const WebCursorInfo& cursor_info) {
50 if (cursor_info.externalHandle) {
51 InitFromExternalCursor(cursor_info.externalHandle);
56 type_ = cursor_info.type;
57 hotspot_ = cursor_info.hotSpot;
59 SetCustomData(cursor_info.customImage);
63 void WebCursor::GetCursorInfo(WebCursorInfo* cursor_info) const {
64 cursor_info->type = static_cast<WebCursorInfo::Type>(type_);
65 cursor_info->hotSpot = hotspot_;
66 ImageFromCustomData(&cursor_info->customImage);
69 cursor_info->externalHandle = external_cursor_;