Home
last modified time | relevance | path

Searched refs:SharedCursor (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/platform/
DCursor.h76 class SharedCursor : public RefCounted<SharedCursor> {
78 …static PassRefPtr<SharedCursor> create(HCURSOR nativeCursor) { return adoptRef(new SharedCursor(na… in create()
79 ~SharedCursor();
82 SharedCursor(HCURSOR nativeCursor) : m_nativeCursor(nativeCursor) { } in SharedCursor() function
85 typedef RefPtr<SharedCursor> PlatformCursor;
/external/webkit/Source/WebCore/platform/win/
DCursorWin.cpp43 static PassRefPtr<SharedCursor> createSharedCursor(Image* img, const IntPoint& hotSpot) in createSharedCursor()
45 RefPtr<SharedCursor> impl; in createSharedCursor()
73 impl = SharedCursor::create(CreateIconIndirect(&ii)); in createSharedCursor()
108 impl = SharedCursor::create(CreateIconIndirect(&icon)); in createSharedCursor()
119 static PassRefPtr<SharedCursor> loadSharedCursor(HINSTANCE hInstance, LPCWSTR lpCursorName) in loadSharedCursor()
121 return SharedCursor::create(::LoadCursorW(hInstance, lpCursorName)); in loadSharedCursor()
124 static PassRefPtr<SharedCursor> loadCursorByName(char* name, int x, int y) in loadCursorByName()
261 SharedCursor::~SharedCursor() in ~SharedCursor()
/external/webkit/Source/WebCore/
DChangeLog-2008-08-1012900 (WebCore::SharedCursor::create):
12901 (WebCore::SharedCursor::~SharedCursor):
12902 (WebCore::SharedCursor::SharedCursor):
51079 (WebCore::SharedCursor::SharedCursor):
51092 (WebCore::SharedCursor::SharedCursor): Added explicit RefCounted constructor.
DChangeLog-2007-10-147541 Added SharedCursor for CursorWin so we can correctly track lifetime of custom/image
7545 (WebCore::SharedCursor::SharedCursor):
7546 (WebCore::SharedCursor::~SharedCursor):
7547 (WebCore::SharedCursor::nativeCursor):
DChangeLog-2010-01-2910835 * platform/win/CursorWin.cpp: Moved destructor of SharedCursor here.
10836 (WebCore::SharedCursor::~SharedCursor): Moved here.
DChangeLog-2010-12-0699922 (WebCore::SharedCursor::~SharedCursor):