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

Unified Diff: chrome/test/data/extensions/api_test/extension_gallery_install/complete_without_begin.html

Issue 4727001: Split the private webstore install API into two parts.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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/extension_gallery_install/complete_without_begin.html
===================================================================
--- chrome/test/data/extensions/api_test/extension_gallery_install/complete_without_begin.html (revision 0)
+++ chrome/test/data/extensions/api_test/extension_gallery_install/complete_without_begin.html (revision 0)
@@ -0,0 +1,11 @@
+<script src="common.js"></script>
+<script>
+// This tests that a call to completeInstall without a previous call to begin
+// generates an error.
+chrome.webstorePrivate.completeInstall(extension_id, function() {
+ var expected_error = extension_id +
+ " does not match a previous call to beginInstall";
+ chrome.test.assertEq(chrome.extension.lastError.message, expected_error);
+ chrome.test.succeed();
+});
+</script>
Property changes on: chrome/test/data/extensions/api_test/extension_gallery_install/complete_without_begin.html
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698