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

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

Issue 671193002: Remove unused test data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/install_bundle.html
diff --git a/chrome/test/data/extensions/api_test/webstore_private/install_bundle.html b/chrome/test/data/extensions/api_test/webstore_private/install_bundle.html
deleted file mode 100644
index d9859dd69fad3b00b1784ebc4fe6cd4a26c41541..0000000000000000000000000000000000000000
--- a/chrome/test/data/extensions/api_test/webstore_private/install_bundle.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!--
- * Copyright (c) 2012 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.
--->
-<script src="common.js"></script>
-<script>
-
-var bundleItems = [
- {
- id: 'begfmnajjkbjdgmffnjaojchoncnmngg',
- manifest: getManifest('bundle/app1.json'),
- localizedName: 'app.1'
- },
- {
- id: 'mpneghmdnmaolkljkipbhaienajcflfe',
- manifest: getManifest('bundle/app2.json'),
- localizedName: 'app.2'
- },
- {
- id: 'bmfoocgfinpmkmlbjhcbofejhkhlbchk',
- manifest: getManifest('bundle/extension1.json'),
- localizedName: 'extension.1'
- },
- {
- id: 'pkapffpjmiilhlhbibjhamlmdhfneidj',
- manifest: getManifest('bundle/extension2.json'),
- localizedName: 'extension.2'
- }
-];
-
-runTests([
- function successfulInstall() {
- chrome.webstorePrivate.installBundle(
- bundleItems, callbackPass(function() {
- bundleItems.forEach(function(item) {
- checkItemInstalled(
- item.id,
- callbackPass(function(result) { assertTrue(result); }));
- });
- }));
- }
-]);
-
-</script>

Powered by Google App Engine
This is Rietveld 408576698