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

  /external/webkit/WebCore/platform/
Cursor.h 70 class SharedCursor : public RefCounted<SharedCursor> {
72 static PassRefPtr<SharedCursor> create(HCURSOR nativeCursor) { return adoptRef(new SharedCursor(nativeCursor)); }
73 ~SharedCursor();
76 SharedCursor(HCURSOR nativeCursor) : m_nativeCursor(nativeCursor) { }
79 typedef RefPtr<SharedCursor> PlatformCursor;
  /external/webkit/WebCore/platform/win/
CursorWin.cpp 82 m_impl = SharedCursor::create(CreateIconIndirect(&ii));
117 m_impl = SharedCursor::create(CreateIconIndirect(&icon));
153 static PassRefPtr<SharedCursor> loadSharedCursor(HINSTANCE hInstance, LPCTSTR lpCursorName)
155 return SharedCursor::create(LoadCursor(hInstance, lpCursorName));
411 SharedCursor::~SharedCursor()

Completed in 12 milliseconds