@Override
 public List<String> getScripts(
     AuraContext context,
     boolean safeInlineJs,
     boolean ignoreNonCacheableScripts,
     Map<String, Object> attributes)
     throws QuickFixException {
   List<String> ret = Lists.newArrayList();
   // Client libraries
   ret.addAll(getJsClientLibraryUrls(context));
   ret.addAll(getBaseScripts(context, attributes));
   ret.addAll(getFrameworkScripts(context, safeInlineJs, ignoreNonCacheableScripts, attributes));
   return ret;
 }