am 4a9200d0: renaming setJavaClassName to setPluginStubJavaClassName

Merge commit '4a9200d0945cd5eb4cfe7a8721c70eeec67e528e' into eclair-plus-aosp

* commit '4a9200d0945cd5eb4cfe7a8721c70eeec67e528e':
  renaming setJavaClassName to setPluginStubJavaClassName
This commit is contained in:
Derek Sollenberger
2009-09-21 10:42:56 -07:00
committed by Android Git Automerger

View File

@@ -174,8 +174,8 @@ NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc,
// notify the plugin API of the location of the java interface
char* className = "com.android.sampleplugin.SamplePluginStub";
NPError npErr = browser->setvalue(instance, kSetJavaClassName_ANPSetValue,
reinterpret_cast<void*>(className));
NPError npErr = browser->setvalue(instance, kSetPluginStubJavaClassName_ANPSetValue,
reinterpret_cast<void*>(className));
if (npErr) {
gLogI.log(instance, kError_ANPLogType, "set class err %d", npErr);
return npErr;