HomeSort by relevance Sort by last modified time
    Searched refs:SharedCursor (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/
Cursor.h 76 class SharedCursor : public RefCounted<SharedCursor> {
78 static PassRefPtr<SharedCursor> create(HCURSOR nativeCursor) { return adoptRef(new SharedCursor(nativeCursor)); }
79 ~SharedCursor();
82 SharedCursor(HCURSOR nativeCursor) : m_nativeCursor(nativeCursor) { }
85 typedef RefPtr<SharedCursor> PlatformCursor;
  /external/webkit/Source/WebCore/platform/win/
CursorWin.cpp 43 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 132 milliseconds