am f7d831e8: am 4a9200d0: renaming setJavaClassName to setPluginStubJavaClassName

Merge commit 'f7d831e876c1135b1fc73058358ce3dfb61ca304'

* commit 'f7d831e876c1135b1fc73058358ce3dfb61ca304':
  renaming setJavaClassName to setPluginStubJavaClassName
This commit is contained in:
Derek Sollenberger
2009-09-21 10:53:18 -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;