M plugins/build.xml

M plugins/mozilla/Makefile.in

- Changes to build with objdir

M plugins/examples/MediaPlayer/JMPlayer.java

- Do not use * imports

M plugins/examples/MediaPlayer/build.xml

- distribute to objdir

M plugins/src/PlugletEngine.cpp
M plugins/src/PlugletFactory.cpp
M plugins/src/PlugletsDir.cpp

- Additional logging


git-svn-id: svn://10.0.0.236/trunk@221977 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
edburns%acm.org
2007-03-16 16:29:31 +00:00
parent 71f6a49305
commit a75284a92a
7 changed files with 98 additions and 58 deletions

View File

@@ -155,8 +155,6 @@ nsresult PlugletFactory::Shutdown(void) {
}
nsresult PlugletFactory::GetMIMEDescription(const char* *result) {
PR_LOG(PlugletLog::log, PR_LOG_DEBUG,
("PlugletFactory::GetMimeDescription\n"));
if(!result) {
return NS_ERROR_FAILURE;
}
@@ -166,6 +164,10 @@ nsresult PlugletFactory::GetMIMEDescription(const char* *result) {
PlugletFactory::PlugletFactory(const char *inMimeDescription, const char *inPath) : jthis(nsnull), path(PL_strdup(inPath)), mimeDescription(PL_strdup(inMimeDescription))
{
PR_LOG(PlugletLog::log, PR_LOG_DEBUG,
("PlugletFactory::PlugletFactory: mimeDescription: %s, path: %s\n",
mimeDescription, path));
}
PlugletFactory::~PlugletFactory(void) {
@@ -203,7 +205,12 @@ PlugletFactory * PlugletFactory::Load(const char * path) {
char * mime = PlugletLoader::GetMIMEDescription(path);
PlugletFactory * result = nsnull;
if (mime) {
PR_LOG(PlugletLog::log, PR_LOG_DEBUG,
("PlugletFactory::Load: About to create PlugletFactory instance\n"));
result = new PlugletFactory(mime,path);
PR_LOG(PlugletLog::log, PR_LOG_DEBUG,
("PlugletFactory::Load: successfully created PlugletFactory instance\n"));
//delete[] mime; //nb we have a strange exception here
}
return result;