Add security controls to all plugins, get plugins build for all tier-1
platforms.

Patch by: jat
Review by: amitmanjhi, jaimeyap


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@6085 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/plugins/xpcom/ModuleOOPHM.cpp b/plugins/xpcom/ModuleOOPHM.cpp
index 919d2b3..6fda93c 100644
--- a/plugins/xpcom/ModuleOOPHM.cpp
+++ b/plugins/xpcom/ModuleOOPHM.cpp
@@ -51,7 +51,8 @@
     const char *aLoaderStr, const char *aType,
     const nsModuleComponentInfo *aInfo) {
 
-  Debug::log(Debug::Info) << "Registered GWT hosted mode plugin"
+  Debug::log(Debug::Info)
+      << "  successfully registered GWT Development Mode plugin"
       << Debug::flush;
   nsresult rv;
   nsCOMPtr<nsICategoryManager> categoryManager =
@@ -78,7 +79,7 @@
 static NS_IMETHODIMP unregisterSelf(nsIComponentManager *aCompMgr,
     nsIFile *aPath, const char *aLoaderStr,
     const nsModuleComponentInfo *aInfo) {
-  Debug::log(Debug::Debugging) << "ModuleOOPHM unRegisterSelf()"
+  Debug::log(Debug::Info) << "Unregistered GWT Development Mode plugin"
       << Debug::flush;
   return NS_OK;
 }
@@ -111,7 +112,7 @@
 
 NSGETMODULE_ENTRY_POINT(ExternalWrapperModule) (nsIComponentManager *servMgr,
     nsIFile* location, nsIModule** result) {
-  Debug::log(Debug::Debugging) << "OOPHM ExternalWrapperModule entry point"
+  Debug::log(Debug::Debugging) << "GWT DMP ExternalWrapperModule entry point"
       << Debug::flush;
 
   // CURRENTLY BUILT AS SEPARATE PLUGINS FOR FF1.5/2 and FF3, so the below
@@ -129,7 +130,8 @@
 
   nsCString gecko_version;
   app_info->GetPlatformVersion(gecko_version);
-  Debug::log(Debug::Info) << "  gecko version = "
+  Debug::log(Debug::Info)
+      << "Initializing GWT Development Mode Plugin - gecko version = "
       << gecko_version.BeginReading() << Debug::flush;
 #if defined(BROWSER_FF2)
   if (strncmp(gecko_version.BeginReading(), "1.8", 3) != 0) {