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

Unified Diff: tools/testing/dart/android.dart

Issue 29773006: Changes to run tests on Dartium content shell on Android. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 2 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: tools/testing/dart/android.dart
===================================================================
--- tools/testing/dart/android.dart (revision 28998)
+++ tools/testing/dart/android.dart (working copy)
@@ -265,6 +265,13 @@
}
/**
+ * Set system property name to value.
+ */
+ Future setProp(String name, String value) {
+ return _adbCommand(['shell', 'setprop', name, value]);
+ }
+
+ /**
* Kill all background processes.
*/
Future killAll() {

Powered by Google App Engine
This is Rietveld 408576698