Index: chrome/test/mini_installer/uninstall_chrome.py |
diff --git a/chrome/test/mini_installer/uninstall_chrome.py b/chrome/test/mini_installer/uninstall_chrome.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d909d518fe17e139b3944a2dc27cdde6b7c812ae |
--- /dev/null |
+++ b/chrome/test/mini_installer/uninstall_chrome.py |
@@ -0,0 +1,10 @@ |
+# Copyright 2013 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+import subprocess |
+ |
+# TODO(sukolsak): This should read the uninstall command from the registry and |
+# run that instead. |
+subprocess.call("mini_installer.exe --uninstall --multi-install --chrome", |
+ shell=True) |