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

Unified Diff: site/try/src/settings.dart

Issue 408783002: Enable Try Dart to run on IE11. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: removed dynamic, marked one test as Fail on IE11 Created 6 years, 4 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: site/try/src/settings.dart
===================================================================
--- site/try/src/settings.dart (revision 39366)
+++ site/try/src/settings.dart (working copy)
@@ -95,6 +95,12 @@
const BooleanUserOption live = const BooleanUserOption('live', isHidden: true);
+const BooleanUserOption alwaysRunInIframe =
+ const BooleanUserOption('alwaysRunInIframe', isHidden: true);
+
+const BooleanUserOption communicateViaBlobs =
+ const BooleanUserOption('communicateViaBlobs', isHidden: true);
+
const List<UserOption> options = const <UserOption>[
_alwaysRunInWorker,
_verboseCompiler,
@@ -108,4 +114,6 @@
_codeFont,
_theme,
_currentSample,
+ alwaysRunInIframe,
+ communicateViaBlobs,
];

Powered by Google App Engine
This is Rietveld 408576698