Index: chrome/test/data/extensions/api_test/webstore_private/common.js |
diff --git a/chrome/test/data/extensions/api_test/webstore_private/common.js b/chrome/test/data/extensions/api_test/webstore_private/common.js |
index 1021877fc0b07b00dca55cc80524ef1d4da4e2f3..7aa92fd2dc4207020c593926d726c7c11d3b58e1 100644 |
--- a/chrome/test/data/extensions/api_test/webstore_private/common.js |
+++ b/chrome/test/data/extensions/api_test/webstore_private/common.js |
@@ -90,7 +90,9 @@ function installAndCleanUp(installOptions, whileInstalled) { |
whileInstalled(); |
- chrome.management.uninstall(extensionId, {}, callbackPass()); |
+ chrome.test.runWithUserGesture(callbackPass(function() { |
+ chrome.management.uninstall(extensionId, {}, callbackPass()); |
+ })); |
})); |
})); |
} |