Home
last modified time | relevance | path

Searched refs:cursor_info (Results 1 – 3 of 3) sorted by relevance

/external/chromium/webkit/glue/
Dwebcursor_mac.mm172 WebKit::WebCursorInfo cursor_info;
176 cursor_info.type = WebCursorInfo::TypePointer;
179 cursor_info.type = WebCursorInfo::TypeCopy;
182 cursor_info.type = WebCursorInfo::TypeAlias;
185 cursor_info.type = WebCursorInfo::TypeContextMenu;
188 cursor_info.type = WebCursorInfo::TypeIBeam;
192 cursor_info.type = WebCursorInfo::TypeCross;
196 cursor_info.type = WebCursorInfo::TypeWait;
199 cursor_info.type = WebCursorInfo::TypeGrabbing;
202 cursor_info.type = WebCursorInfo::TypeGrab;
[all …]
Dwebcursor.cc22 WebCursor::WebCursor(const WebCursorInfo& cursor_info) in WebCursor() argument
25 InitFromCursorInfo(cursor_info); in WebCursor()
46 void WebCursor::InitFromCursorInfo(const WebCursorInfo& cursor_info) { in InitFromCursorInfo() argument
50 if (cursor_info.externalHandle) { in InitFromCursorInfo()
51 InitFromExternalCursor(cursor_info.externalHandle); in InitFromCursorInfo()
56 type_ = cursor_info.type; in InitFromCursorInfo()
57 hotspot_ = cursor_info.hotSpot; in InitFromCursorInfo()
59 SetCustomData(cursor_info.customImage); in InitFromCursorInfo()
63 void WebCursor::GetCursorInfo(WebCursorInfo* cursor_info) const { in GetCursorInfo()
64 cursor_info->type = static_cast<WebCursorInfo::Type>(type_); in GetCursorInfo()
[all …]
Dwebcursor.h45 explicit WebCursor(const WebKit::WebCursorInfo& cursor_info);
53 void InitFromCursorInfo(const WebKit::WebCursorInfo& cursor_info);
54 void GetCursorInfo(WebKit::WebCursorInfo* cursor_info) const;