Update of the debug plugin. Not part of the build

git-svn-id: svn://10.0.0.236/trunk@122093 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dcone%netscape.com
2002-05-23 21:06:49 +00:00
parent b76bb6eb37
commit d2a9c8c9c0
9 changed files with 188 additions and 27 deletions

View File

@@ -117,6 +117,20 @@ NS_IMETHODIMP nsScriptablePeer::GetVersion(char * *aVersion)
return NS_OK;
}
NS_IMETHODIMP nsScriptablePeer::CreateDirectory(const PRUnichar *aFilePath,PRUint32 aFlags, PRInt32 *aResult)
{
nsresult rv = NS_OK;
PRBool retVal;
if ( mPlugin ) {
mPlugin->CreateDirectory(aFilePath,aFlags,&retVal);
}
return NS_OK;
}
NS_IMETHODIMP nsScriptablePeer::DumpLayout(nsISupports *aWindow, const PRUnichar *aFilePath, const PRUnichar *aFileName,
PRUint32 aFlags, PRInt32 *aResult)
{
@@ -127,8 +141,10 @@ PRBool retVal;
mPlugin->OutPutLayoutFrames(aWindow,aFilePath,aFileName,aFlags,&retVal);
if (retVal == NS_OK) {
*aResult= 0;
} else if ( retVal == NS_ERROR_FILE_INVALID_PATH ) {
*aResult = 2; // fatal error.. stop exection
} else {
*aResult = 1;
*aResult = 1; // did not load.. keep going
}
}
return rv;