Changeset 39127 in webkit for trunk/JavaScriptCore/API/JSContextRef.h
- Timestamp:
- Dec 8, 2008, 10:46:39 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSContextRef.h
r35901 r39127 72 72 built-in JavaScript objects, such as Object, Function, String, and Array. 73 73 74 The created context can only be used on the main thread. JavaScript values cannot be 75 shared or exchanged between contexts. 74 In WebKit version 4.0 and later, the context is created in a unique context group. 75 Therefore, scripts may execute in it concurrently with scripts executing in other contexts. 76 However, you may not use values created in the context in other contexts. 76 77 @param globalObjectClass The class to use when creating the global object. Pass 77 78 NULL to use the default object class. 78 79 @result A JSGlobalContext with a global object of class globalObjectClass. 79 80 */ 80 JS_EXPORT JSGlobalContextRef JSGlobalContextCreate(JSClassRef globalObjectClass) AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER _BUT_DEPRECATED_AFTER_WEBKIT_VERSION_3_1;81 JS_EXPORT JSGlobalContextRef JSGlobalContextCreate(JSClassRef globalObjectClass) AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER; 81 82 82 83 /*!
Note:
See TracChangeset
for help on using the changeset viewer.