Changeset 57917 in webkit for trunk/JavaScriptCore
- Timestamp:
- Apr 20, 2010, 2:13:16 PM (15 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r57914 r57917 1 2010-04-20 Gavin Barraclough <[email protected]> 2 3 Reviewed by NOBODY (speculative windows fix - missed a bit!). 4 5 * wtf/text/AtomicString.h: 6 1 7 2010-04-20 Gavin Barraclough <[email protected]> 2 8 -
trunk/JavaScriptCore/wtf/text/AtomicString.cpp
r57904 r57917 297 297 } 298 298 299 DEFINE_GLOBAL(AtomicString, nullAtom)300 DEFINE_GLOBAL(AtomicString, emptyAtom, "")301 DEFINE_GLOBAL(AtomicString, textAtom, "#text")302 DEFINE_GLOBAL(AtomicString, commentAtom, "#comment")303 DEFINE_GLOBAL(AtomicString, starAtom, "*")304 DEFINE_GLOBAL(AtomicString, xmlAtom, "xml")305 DEFINE_GLOBAL(AtomicString, xmlnsAtom, "xmlns")299 JS_EXPORTDATA DEFINE_GLOBAL(AtomicString, nullAtom) 300 JS_EXPORTDATA DEFINE_GLOBAL(AtomicString, emptyAtom, "") 301 JS_EXPORTDATA DEFINE_GLOBAL(AtomicString, textAtom, "#text") 302 JS_EXPORTDATA DEFINE_GLOBAL(AtomicString, commentAtom, "#comment") 303 JS_EXPORTDATA DEFINE_GLOBAL(AtomicString, starAtom, "*") 304 JS_EXPORTDATA DEFINE_GLOBAL(AtomicString, xmlAtom, "xml") 305 JS_EXPORTDATA DEFINE_GLOBAL(AtomicString, xmlnsAtom, "xmlns") 306 306 307 307 void AtomicString::init()
Note:
See TracChangeset
for help on using the changeset viewer.