Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/lib/src/GeckoContentHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/src/GeckoContentHandler.cpp')
-rw-r--r--lib/src/GeckoContentHandler.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/lib/src/GeckoContentHandler.cpp b/lib/src/GeckoContentHandler.cpp
new file mode 100644
index 0000000..4d9de8e
--- /dev/null
+++ b/lib/src/GeckoContentHandler.cpp
@@ -0,0 +1,40 @@
+#include <nsCExternalHandlerService.h>
+#include <nsIFile.h>
+
+#include "GeckoContentHandler.h"
+
+GeckoContentHandler::GeckoContentHandler()
+{
+
+}
+
+GeckoContentHandler::~GeckoContentHandler()
+{
+
+}
+
+NS_IMPL_ISUPPORTS1(GeckoContentHandler, nsIHelperAppLauncherDialog)
+
+NS_IMETHODIMP
+GeckoContentHandler::Show (nsIHelperAppLauncher *aLauncher,
+ nsISupports *aContext,
+ PRUint32 aReason)
+{
+ nsCOMPtr<nsIFile> tmpFile;
+ aLauncher->GetTargetFile(getter_AddRefs(tmpFile));
+
+ aLauncher->SaveToDisk (tmpFile, PR_FALSE);
+
+ return NS_OK;
+}
+
+NS_IMETHODIMP
+GeckoContentHandler::PromptForSaveToFile (nsIHelperAppLauncher *aLauncher,
+ nsISupports *aWindowContext,
+ const PRUnichar *aDefaultFile,
+ const PRUnichar *aSuggestedFileExtension,
+ nsILocalFile **_retval)
+{
+ return NS_OK;
+}
+