CB-8608 Add blob: to default shouldAllowRequest policy

This commit is contained in:
Andrew Grieve 2015-03-04 11:09:38 -05:00
parent 62c081dc85
commit 489e63f8e7

View File

@ -325,7 +325,7 @@ public class PluginManager {
} }
// Default policy: // Default policy:
if (url.startsWith("data:") || url.startsWith("about:blank")) { if (url.startsWith("blob:") || url.startsWith("data:") || url.startsWith("about:blank")) {
return true; return true;
} }
if (url.startsWith("file://")) { if (url.startsWith("file://")) {