@Override
 public List<String> getFrameworkFallbackScripts(
     AuraContext context, boolean safeInlineJs, Map<String, Object> attributes)
     throws QuickFixException {
   List<String> ret = Lists.newArrayList();
   // appcache fallback can only use for items NOT listed in the CACHE section of the manifest
   ret.add(
       getBootstrapUrl(context, attributes) + " " + getBootstrapFallbackUrl(context, attributes));
   ret.add(
       configAdapter.getEncryptionKeyURL(true)
           + " "
           + configAdapter.getEncryptionKeyFallbackURL(true));
   return ret;
 }