| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2012 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include <string.h> | 28 #include <string.h> |
| 29 | 29 |
| 30 using namespace std; | 30 using namespace std; |
| 31 | 31 |
| 32 class SlowNPPNew : public PluginTest { | 32 class SlowNPPNew : public PluginTest { |
| 33 public: | 33 public: |
| 34 SlowNPPNew(NPP npp, const string& identifier) | 34 SlowNPPNew(NPP npp, const string& identifier) |
| 35 : PluginTest(npp, identifier) | 35 : PluginTest(npp, identifier) |
| 36 { | 36 { |
| 37 } | 37 } |
| 38 | 38 |
| 39 private: | 39 private: |
| 40 class PluginObject : public Object<PluginObject> { | 40 class PluginObject : public Object<PluginObject> { |
| 41 public: | 41 public: |
| 42 PluginObject() | 42 PluginObject() |
| 43 { | 43 { |
| 44 } | 44 } |
| 45 | 45 |
| 46 ~PluginObject() | 46 ~PluginObject() |
| 47 { | 47 { |
| 48 } | 48 } |
| 49 | 49 |
| 50 bool hasProperty(NPIdentifier propertyName) | 50 bool hasProperty(NPIdentifier propertyName) |
| 51 { | 51 { |
| 52 return true; | 52 return true; |
| 53 } | 53 } |
| 54 | 54 |
| 55 bool getProperty(NPIdentifier propertyName, NPVariant* result) | 55 bool getProperty(NPIdentifier propertyName, NPVariant* result) |
| 56 { | 56 { |
| 57 static const char* message = "My name is "; | 57 static const char* message = "My name is "; |
| 58 char* propertyString = pluginTest()->NPN_UTF8FromIdentifier(property
Name); | 58 char* propertyString = pluginTest()->NPN_UTF8FromIdentifier(property
Name); |
| 59 | 59 |
| 60 int bufferLength = strlen(propertyString) + strlen(message) + 1; | 60 int bufferLength = strlen(propertyString) + strlen(message) + 1; |
| 61 char* resultBuffer = static_cast<char*>(pluginTest()->NPN_MemAlloc(b
ufferLength)); | 61 char* resultBuffer = static_cast<char*>(pluginTest()->NPN_MemAlloc(b
ufferLength)); |
| 62 snprintf(resultBuffer, bufferLength, "%s%s", message, propertyString
); | 62 snprintf(resultBuffer, bufferLength, "%s%s", message, propertyString
); |
| 63 | 63 |
| 64 STRINGZ_TO_NPVARIANT(resultBuffer, *result); | 64 STRINGZ_TO_NPVARIANT(resultBuffer, *result); |
| 65 | 65 |
| 66 return true; | 66 return true; |
| 67 } | 67 } |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 virtual NPError NPP_GetValue(NPPVariable variable, void *value) | 70 virtual NPError NPP_GetValue(NPPVariable variable, void *value) |
| 71 { | 71 { |
| 72 if (variable != NPPVpluginScriptableNPObject) | 72 if (variable != NPPVpluginScriptableNPObject) |
| 73 return NPERR_GENERIC_ERROR; | 73 return NPERR_GENERIC_ERROR; |
| 74 | 74 |
| 75 *(NPObject**)value = PluginObject::create(this); | 75 *(NPObject**)value = PluginObject::create(this); |
| 76 | 76 |
| 77 return NPERR_NO_ERROR; | 77 return NPERR_NO_ERROR; |
| 78 } | 78 } |
| 79 | 79 |
| 80 virtual NPError NPP_New(NPMIMEType pluginType, uint16_t mode, int16_t argc,
char* argn[], char* argv[], NPSavedData *saved) | 80 virtual NPError NPP_New(NPMIMEType pluginType, uint16_t mode, int16_t argc,
char* argn[], char* argv[], NPSavedData *saved) |
| 81 { | 81 { |
| 82 usleep(550000); | 82 usleep(550000); |
| 83 return NPERR_NO_ERROR; | 83 return NPERR_NO_ERROR; |
| 84 } | 84 } |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 static PluginTest::Register<SlowNPPNew> slowNPPNew("slow-npp-new"); | 87 static PluginTest::Register<SlowNPPNew> slowNPPNew("slow-npp-new"); |
| OLD | NEW |