Changeset 55621 in webkit for trunk/JavaScriptCore/wtf/OwnPtrCommon.h
- Timestamp:
- Mar 6, 2010, 5:57:23 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/OwnPtrCommon.h
r45669 r55621 2 2 * Copyright (C) 2009 Apple Inc. All rights reserved. 3 3 * Copyright (C) 2009 Torch Mobile, Inc. 4 * Copyright (C) 2010 Company 100 Inc. 4 5 * 5 6 * Redistribution and use in source and binary forms, with or without … … 38 39 #endif 39 40 41 #if PLATFORM(BREWMP) 42 // Forward delcarations at this point avoid the need to include BREW includes 43 // in WTF headers. 44 typedef struct _IFileMgr IFileMgr; 45 typedef struct _IFile IFile; 46 typedef struct IBitmap IBitmap; 47 #endif 48 40 49 namespace WTF { 41 50 … … 57 66 #endif 58 67 68 #if PLATFORM(BREWMP) 69 void deleteOwnedPtr(IFileMgr*); 70 void deleteOwnedPtr(IFile*); 71 void deleteOwnedPtr(IBitmap*); 72 #endif 73 59 74 } // namespace WTF 60 75
Note:
See TracChangeset
for help on using the changeset viewer.