Ignore:
Timestamp:
Jun 7, 2010, 10:34:10 AM (15 years ago)
Author:
[email protected]
Message:

2010-06-07 Kwang Yul Seo <[email protected]>

Reviewed by Eric Seidel.

[BREWMP] Add more types to OwnPtr
https://bugs.webkit.org/show_bug.cgi?id=39667

Add ISSL and ISocket to the list of OwnPtr-ed type.

  • wtf/OwnPtrCommon.h:
  • wtf/brew/OwnPtrBrew.cpp: (WTF::deleteOwnedPtr):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/OwnPtrCommon.h

    r55621 r60787  
    4242// Forward delcarations at this point avoid the need to include BREW includes
    4343// in WTF headers.
     44typedef struct _ISocket ISocket;
    4445typedef struct _IFileMgr IFileMgr;
    4546typedef struct _IFile IFile;
    4647typedef struct IBitmap IBitmap;
     48typedef struct ISSL ISSL;
    4749#endif
    4850
     
    7072    void deleteOwnedPtr(IFile*);
    7173    void deleteOwnedPtr(IBitmap*);
     74    void deleteOwnedPtr(ISSL*);
     75    void deleteOwnedPtr(ISocket*);
    7276#endif
    7377
Note: See TracChangeset for help on using the changeset viewer.