Changeset 20867 in webkit for trunk/JavaScriptCore/bindings/npapi.h
- Timestamp:
- Apr 12, 2007, 9:32:51 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/npapi.h
r20613 r20867 105 105 106 106 #define NP_VERSION_MAJOR 0 107 #define NP_VERSION_MINOR 1 7107 #define NP_VERSION_MINOR 18 108 108 109 109 … … 188 188 uint32 lastmodified; 189 189 void* notifyData; 190 const char* headers; /* Response headers from host. 191 * Exists only for >= NPVERS_HAS_RESPONSE_HEADERS. 192 * Used for HTTP only; NULL for non-HTTP. 193 * Available from NPP_NewStream onwards. 194 * Plugin should copy this data before storing it. 195 * Includes HTTP status line and all headers, 196 * preferably verbatim as received from server, 197 * headers formatted as in HTTP ("Header: Value"), 198 * and newlines (\n, NOT \r\n) separating lines. 199 * Terminated by \n\0 (NOT \n\n\0). */ 190 200 } NPStream; 191 201 … … 315 325 316 326 /* Get the NPObject for scripting the plugin. */ 317 NPPVpluginScriptableNPObject = 15 327 NPPVpluginScriptableNPObject = 15, 328 329 /* Get the plugin value (as \0-terminated UTF-8 string data) for 330 * form submission if the plugin is part of a form. Use 331 * NPN_MemAlloc() to allocate memory for the string data. 332 */ 333 NPPVformValue = 16 /* Not implemented in WebKit */ 318 334 } NPPVariable; 319 335 … … 588 604 #define NPVERS_68K_HAS_LIVECONNECT 11 589 605 #define NPVERS_HAS_WINDOWLESS 11 606 #define NPVERS_HAS_XPCONNECT_SCRIPTING 13 /* Not implemented in WebKit */ 607 #define NPVERS_HAS_NPRUNTIME_SCRIPTING 14 608 #define NPVERS_HAS_FORM_VALUES 15 /* Not implemented in WebKit; see bug 13061 */ 609 #define NPVERS_HAS_POPUPS_ENABLED_STATE 16 /* Not implemented in WebKit */ 610 #define NPVERS_HAS_RESPONSE_HEADERS 17 611 #define NPVERS_HAS_NPOBJECT_ENUM 18 590 612 591 613
Note:
See TracChangeset
for help on using the changeset viewer.