| OLD | NEW |
| 1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ | 1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
| 2 /* ***** BEGIN LICENSE BLOCK ***** | 2 /* ***** BEGIN LICENSE BLOCK ***** |
| 3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
| 4 * | 4 * |
| 5 * The contents of this file are subject to the Mozilla Public License Version | 5 * The contents of this file are subject to the Mozilla Public License Version |
| 6 * 1.1 (the "License"); you may not use this file except in compliance with | 6 * 1.1 (the "License"); you may not use this file except in compliance with |
| 7 * the License. You may obtain a copy of the License at | 7 * the License. You may obtain a copy of the License at |
| 8 * http://www.mozilla.org/MPL/ | 8 * http://www.mozilla.org/MPL/ |
| 9 * | 9 * |
| 10 * Software distributed under the License is distributed on an "AS IS" basis, | 10 * Software distributed under the License is distributed on an "AS IS" basis, |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 | 439 |
| 440 // BEGIN MODIFICATIONS (copied from WebKit/WebCore/bridge/npapi.h) | 440 // BEGIN MODIFICATIONS (copied from WebKit/WebCore/bridge/npapi.h) |
| 441 NPPVpluginUrlRequestsDisplayedBool = 17, /* Not implemented in WebKit */ | 441 NPPVpluginUrlRequestsDisplayedBool = 17, /* Not implemented in WebKit */ |
| 442 | 442 |
| 443 /* Checks if the plugin is interested in receiving the http body of | 443 /* Checks if the plugin is interested in receiving the http body of |
| 444 * failed http requests (http status != 200). | 444 * failed http requests (http status != 200). |
| 445 */ | 445 */ |
| 446 NPPVpluginWantsAllNetworkStreams = 18, | 446 NPPVpluginWantsAllNetworkStreams = 18, |
| 447 | 447 |
| 448 /* Checks to see if the plug-in would like the browser to load the "src" att
ribute. */ | 448 /* Checks to see if the plug-in would like the browser to load the "src" att
ribute. */ |
| 449 NPPVpluginCancelSrcStream = 20, | 449 NPPVpluginCancelSrcStream = 20 |
| 450 // END MODIFICATIONS | 450 // END MODIFICATIONS |
| 451 #ifdef XP_MACOSX | 451 #ifdef XP_MACOSX |
| 452 /* Used for negotiating drawing models */ | 452 /* Used for negotiating drawing models */ |
| 453 , NPPVpluginDrawingModel = 1000 | 453 , NPPVpluginDrawingModel = 1000 |
| 454 #endif | 454 #endif |
| 455 } NPPVariable; | 455 } NPPVariable; |
| 456 | 456 |
| 457 /* | 457 /* |
| 458 * List of variable names for which NPN_GetValue is implemented by Mozilla | 458 * List of variable names for which NPN_GetValue is implemented by Mozilla |
| 459 */ | 459 */ |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 827 #ifdef __cplusplus | 827 #ifdef __cplusplus |
| 828 } /* end extern "C" */ | 828 } /* end extern "C" */ |
| 829 #endif | 829 #endif |
| 830 | 830 |
| 831 #endif /* RC_INVOKED */ | 831 #endif /* RC_INVOKED */ |
| 832 #ifdef __OS2__ | 832 #ifdef __OS2__ |
| 833 #pragma pack() | 833 #pragma pack() |
| 834 #endif | 834 #endif |
| 835 | 835 |
| 836 #endif /* _NPAPI_H_ */ | 836 #endif /* _NPAPI_H_ */ |
| OLD | NEW |