Searched refs:SharedCursor (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/
H A DCursor.h76 class SharedCursor : public RefCounted<SharedCursor> { class in namespace:WebCore
78 static PassRefPtr<SharedCursor> create(HCURSOR nativeCursor) { return adoptRef(new SharedCursor(nativeCursor)); }
79 ~SharedCursor();
82 SharedCursor(HCURSOR nativeCursor) : m_nativeCursor(nativeCursor) { } function in class:WebCore::SharedCursor
85 typedef RefPtr<SharedCursor> PlatformCursor;
/external/webkit/Source/WebCore/platform/win/
H A DCursorWin.cpp43 static PassRefPtr<SharedCursor> createSharedCursor(Image* img, const IntPoint& hotSpot)
45 RefPtr<SharedCursor> impl;
73 impl = SharedCursor::create(CreateIconIndirect(&ii));
108 impl = SharedCursor::create(CreateIconIndirect(&icon));
119 static PassRefPtr<SharedCursor> loadSharedCursor(HINSTANCE hInstance, LPCWSTR lpCursorName)
121 return SharedCursor::create(::LoadCursorW(hInstance, lpCursorName));
124 static PassRefPtr<SharedCursor> loadCursorByName(char* name, int x, int y)
261 SharedCursor::~SharedCursor()

Completed in 83 milliseconds