bug 704520 - Flash content does not have a placeholder if on Android 3.x r=snorp a=java-only

This commit is contained in:
Brad Lassey 2011-12-12 16:47:37 -05:00
parent d7693d87a0
commit e23645ccfa

View File

@ -222,6 +222,9 @@ abstract public class GeckoApp
public ArrayList<PackageInfo> mPackageInfoCache = new ArrayList<PackageInfo>();
String[] getPluginDirectories() {
// we don't support Honeycomb and later
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB)
return new String[0];
Log.w(LOGTAG, "zerdatime " + new Date().getTime() + " - start of getPluginDirectories");