Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(378)

Unified Diff: sdk/lib/_internal/compiler/implementation/compiler.dart

Issue 219053003: Deprecate automatic generation of precompiled.js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 =

Powered by Google App Engine
This is Rietveld 408576698