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

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: Created 6 years, 5 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 38416)
+++ site/try/src/settings.dart (working copy)
@@ -15,6 +15,24 @@
_alwaysRunInWorker.value = b;
}
+const BooleanUserOption _alwaysRunInIframe =
+ const BooleanUserOption('alwaysRunInIframe');
ahe 2014/07/21 08:16:00 Can we make these settings hidden and automaticall
aam-me 2014/07/21 12:20:38 Acknowledged.
+
+bool get alwaysRunInIframe => _alwaysRunInIframe.value;
ahe 2014/07/21 08:16:00 Since this is a new option, I prefer not adding th
aam-me 2014/07/21 12:20:38 Acknowledged.
+
+void set alwaysRunInIframe(bool b) {
+ _alwaysRunInIframe.value = b;
+}
+
+const BooleanUserOption _communicateViaBlobs =
+ const BooleanUserOption('communicateViaBlobs');
+
+bool get communicateViaBlobs => _communicateViaBlobs.value;
+
+void set communicateViaBlobs(bool b) {
+ _communicateViaBlobs.value = b;
+}
+
const BooleanUserOption _verboseCompiler =
const BooleanUserOption('verboseCompiler');
@@ -97,6 +115,8 @@
const List<UserOption> options = const <UserOption>[
_alwaysRunInWorker,
+ _alwaysRunInIframe,
+ _communicateViaBlobs,
_verboseCompiler,
_minified,
_onlyAnalyze,

Powered by Google App Engine
This is Rietveld 408576698