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

Unified Diff: chrome/test/data/extensions/api_test/webstore_private/cancelled.html

Issue 6992047: Change the web store private install API to accept a localized extension name. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased, removed test files I added in separate CL Created 9 years, 7 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: chrome/test/data/extensions/api_test/webstore_private/cancelled.html
diff --git a/chrome/test/data/extensions/api_test/webstore_private/cancelled.html b/chrome/test/data/extensions/api_test/webstore_private/cancelled.html
index b79250aad60d7f8889473f7a8cbb010f4a59c658..91ebf6cf396a8ff6cc6b512423cb29377b16b17b 100644
--- a/chrome/test/data/extensions/api_test/webstore_private/cancelled.html
+++ b/chrome/test/data/extensions/api_test/webstore_private/cancelled.html
@@ -1,15 +1,15 @@
<script src="common.js"></script>
<script>
// This tests the user cancelling an install started by
-// beginInstallWithManifest.
+// beginInstallWithManifest2.
var manifest = getManifest();
getIconData(function(icon) {
// Begin installing.
- chrome.webstorePrivate.beginInstallWithManifest(extensionId,
- icon,
- manifest,
+ chrome.webstorePrivate.beginInstallWithManifest2({ 'id':extensionId,
+ 'iconData': icon,
+ 'manifest': manifest },
function(result) {
assertEq(result, "user_cancelled");
succeed();

Powered by Google App Engine
This is Rietveld 408576698