summaryrefslogtreecommitdiff
path: root/uriloader/exthandler/nsExternalHelperAppService.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'uriloader/exthandler/nsExternalHelperAppService.cpp')
-rw-r--r--uriloader/exthandler/nsExternalHelperAppService.cpp58
1 files changed, 1 insertions, 57 deletions
diff --git a/uriloader/exthandler/nsExternalHelperAppService.cpp b/uriloader/exthandler/nsExternalHelperAppService.cpp
index 04d76da9f0..e3e135b053 100644
--- a/uriloader/exthandler/nsExternalHelperAppService.cpp
+++ b/uriloader/exthandler/nsExternalHelperAppService.cpp
@@ -64,10 +64,6 @@
#include "nsIObserverService.h" // so we can be a profile change observer
#include "nsIPropertyBag2.h" // for the 64-bit content length
-#ifdef XP_MACOSX
-#include "nsILocalFileMac.h"
-#endif
-
#include "nsIPluginHost.h" // XXX needed for ext->type mapping (bug 233289)
#include "nsPluginHost.h"
#include "nsEscape.h"
@@ -276,50 +272,7 @@ static nsresult GetDownloadDirectory(nsIFile **_directory,
bool aSkipChecks = false)
{
nsCOMPtr<nsIFile> dir;
-#ifdef XP_MACOSX
- // On OS X, we first try to get the users download location, if it's set.
- switch (Preferences::GetInt(NS_PREF_DOWNLOAD_FOLDERLIST, -1)) {
- case NS_FOLDER_VALUE_DESKTOP:
- (void) NS_GetSpecialDirectory(NS_OS_DESKTOP_DIR, getter_AddRefs(dir));
- break;
- case NS_FOLDER_VALUE_CUSTOM:
- {
- Preferences::GetComplex(NS_PREF_DOWNLOAD_DIR,
- NS_GET_IID(nsIFile),
- getter_AddRefs(dir));
- if (!dir) break;
-
- // If we're not checking for availability we're done.
- if (aSkipChecks) {
- dir.forget(_directory);
- return NS_OK;
- }
-
- // We have the directory, and now we need to make sure it exists
- bool dirExists = false;
- (void) dir->Exists(&dirExists);
- if (dirExists) break;
-
- nsresult rv = dir->Create(nsIFile::DIRECTORY_TYPE, 0755);
- if (NS_FAILED(rv)) {
- dir = nullptr;
- break;
- }
- }
- break;
- case NS_FOLDER_VALUE_DOWNLOADS:
- // This is just the OS default location, so fall out
- break;
- }
-
- if (!dir) {
- // If not, we default to the OS X default download location.
- nsresult rv = NS_GetSpecialDirectory(NS_OSX_DEFAULT_DOWNLOAD_DIR,
- getter_AddRefs(dir));
- NS_ENSURE_SUCCESS(rv, rv);
- }
-#else
- // On all other platforms, we default to the systems temporary directory.
+ // On all supported platforms, we default to the system's temporary directory.
nsresult rv = NS_GetSpecialDirectory(NS_OS_TEMP_DIR, getter_AddRefs(dir));
NS_ENSURE_SUCCESS(rv, rv);
@@ -393,7 +346,6 @@ static nsresult GetDownloadDirectory(nsIFile **_directory,
}
#endif
-#endif
NS_ASSERTION(dir, "Somehow we didn't get a download directory!");
dir.forget(_directory);
@@ -462,11 +414,7 @@ struct nsExtraMimeTypeEntry {
const char* mDescription;
};
-#ifdef XP_MACOSX
-#define MAC_TYPE(x) x
-#else
#define MAC_TYPE(x) 0
-#endif
/**
* This table lists all of the 'extra' content types that we can deduce from particular
@@ -477,11 +425,7 @@ struct nsExtraMimeTypeEntry {
*/
static const nsExtraMimeTypeEntry extraMimeEntries[] =
{
-#if defined(XP_MACOSX) // don't define .bin on the mac...use internet config to look that up...
- { APPLICATION_OCTET_STREAM, "exe,com", "Binary File" },
-#else
{ APPLICATION_OCTET_STREAM, "exe,com,bin", "Binary File" },
-#endif
{ APPLICATION_GZIP2, "gz", "gzip" },
{ "application/x-arj", "arj", "ARJ file" },
{ "application/rtf", "rtf", "Rich Text Format File" },