Changeset 62677 in webkit for trunk/JavaScriptCore/API/JSCallbackObject.h
- Timestamp:
- Jul 7, 2010, 9:53:49 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSCallbackObject.h
r60708 r62677 1 1 /* 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. 3 3 * Copyright (C) 2007 Eric Seidel <[email protected]> 4 4 * … … 31 31 #include "JSValueRef.h" 32 32 #include "JSObject.h" 33 #include <wtf/PassOwnPtr.h> 33 34 34 35 namespace JSC { … … 57 58 { 58 59 if (!m_privateProperties) 59 m_privateProperties .set(new JSPrivatePropertyMap);60 m_privateProperties = adoptPtr(new JSPrivatePropertyMap); 60 61 m_privateProperties->setPrivateProperty(propertyName, value); 61 62 }
Note:
See TracChangeset
for help on using the changeset viewer.