Backing out 7653a9cc00ae. Shouldn't have been checked in. r=me

This commit is contained in:
Doug Turner 2012-09-14 09:39:44 -07:00
parent 299c6551e5
commit 288a4898dd

View File

@ -612,7 +612,7 @@ nsDOMDeviceStorage::SetRootDirectoryForType(const nsAString& aType)
NS_ASSERTION(dirService, "Must have directory service");
// Picture directory
if (aType.EqualsLiteral(DEVICESTORAGE_PICTURES)) {
if (aType.Equals(NS_LITERAL_STRING("pictures"))) {
#ifdef MOZ_WIDGET_GONK
NS_NewLocalFile(NS_LITERAL_STRING("/sdcard"), false, getter_AddRefs(f));
#elif defined (MOZ_WIDGET_COCOA)
@ -625,7 +625,7 @@ nsDOMDeviceStorage::SetRootDirectoryForType(const nsAString& aType)
}
// Video directory
else if (aType.EqualsLiteral(DEVICESTORAGE_VIDEOS)) {
else if (aType.Equals(NS_LITERAL_STRING("videos"))) {
#ifdef MOZ_WIDGET_GONK
NS_NewLocalFile(NS_LITERAL_STRING("/sdcard"), false, getter_AddRefs(f));
#elif defined (MOZ_WIDGET_COCOA)
@ -638,7 +638,7 @@ nsDOMDeviceStorage::SetRootDirectoryForType(const nsAString& aType)
}
// Music directory
else if (aType.EqualsLiteral(DEVICESTORAGE_MUSIC)) {
else if (aType.Equals(NS_LITERAL_STRING("music"))) {
#ifdef MOZ_WIDGET_GONK
NS_NewLocalFile(NS_LITERAL_STRING("/sdcard"), false, getter_AddRefs(f));
#elif defined (MOZ_WIDGET_COCOA)
@ -650,15 +650,6 @@ nsDOMDeviceStorage::SetRootDirectoryForType(const nsAString& aType)
#endif
}
// Apps directory
else if (aType.EqualsLiteral(DEVICESTORAGE_APPS)) {
#ifdef MOZ_WIDGET_GONK
NS_NewLocalFile(NS_LITERAL_STRING("/data"), false, getter_AddRefs(f));
#else
// where do we store 3rd party applications on the desktop?
#endif
}
// in testing, we default all device storage types to a temp directory
if (f && mozilla::Preferences::GetBool("device.storage.testing", false)) {
dirService->Get(NS_OS_TEMP_DIR, NS_GET_IID(nsIFile), getter_AddRefs(f));