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

Unified Diff: chrome/test/data/extensions/api_test/webstore_private/incorrect_manifest.js

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/incorrect_manifest.js
diff --git a/chrome/test/data/extensions/api_test/webstore_private/incorrect_manifest.js b/chrome/test/data/extensions/api_test/webstore_private/incorrect_manifest.js
index 839584b5ddaa2d61b5d8232b76d38395a6210678..752d3efba21e46142cdffff5e5112843e74e99af 100644
--- a/chrome/test/data/extensions/api_test/webstore_private/incorrect_manifest.js
+++ b/chrome/test/data/extensions/api_test/webstore_private/incorrect_manifest.js
@@ -11,10 +11,8 @@ var manifest = alterManifest(manifestObj);
// that we get an install error after unpacking the crx file because the crx
// file's manifest won't match what we provided for the confirmation dialog
// here.
-chrome.webstorePrivate.beginInstallWithManifest(
- extensionId,
- "",
- manifest,
+chrome.webstorePrivate.beginInstallWithManifest2(
+ { 'id': extensionId, 'manifest': manifest },
function(result) {
assertNoLastError();
assertEq("", result);

Powered by Google App Engine
This is Rietveld 408576698