| Index: sdk/lib/_internal/compiler/implementation/compiler.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/compiler.dart b/sdk/lib/_internal/compiler/implementation/compiler.dart
|
| index c756277a8f02eea7e5c69bfaf008adcc7d05496b..ba78dc3f8ba7988d3df09f252bb2f8119b56ceae 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/compiler.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/compiler.dart
|
| @@ -359,6 +359,7 @@ abstract class Compiler implements DiagnosticListener {
|
| final bool enableConcreteTypeInference;
|
| final bool disableTypeInferenceFlag;
|
| final bool dumpInfo;
|
| + final bool useContentSecurityPolicy;
|
|
|
| /**
|
| * The maximum size of a concrete type before it widens to dynamic during
|
| @@ -638,6 +639,7 @@ abstract class Compiler implements DiagnosticListener {
|
| this.terseDiagnostics: false,
|
| this.dumpInfo: false,
|
| this.showPackageWarnings: false,
|
| + this.useContentSecurityPolicy: false,
|
| outputProvider,
|
| List<String> strips: const []})
|
| : this.analyzeOnly =
|
|
|