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

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

Issue 9414013: Add a webstore API for installing bundles of extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix debug build Created 8 years, 10 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
« no previous file with comments | « chrome/test/data/extensions/api_test/webstore_private/install_bundle_invalid.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/webstore_private/silently_install.html
diff --git a/chrome/test/data/extensions/api_test/webstore_private/silently_install.html b/chrome/test/data/extensions/api_test/webstore_private/silently_install.html
index 602cdb85c7d0772b7b61ab443caafa6c472e36f8..0f397770e36d3e8f2951610e7eaa69b1aee39cf5 100644
--- a/chrome/test/data/extensions/api_test/webstore_private/silently_install.html
+++ b/chrome/test/data/extensions/api_test/webstore_private/silently_install.html
@@ -1,45 +1,24 @@
+<!--
+ * 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 extension1 = {
'id': 'bmfoocgfinpmkmlbjhcbofejhkhlbchk',
- 'manifest':
- '{\
- "name": "Extension Bundle 1",\
- "version": "1",\
- "manifest_version": 2,\
- "permissions": [ "tabs" ]\
- }'
+ 'manifest': getManifest('bundle/extension1.json')
};
var extension2 = {
'id': 'mpneghmdnmaolkljkipbhaienajcflfe',
- 'manifest':
- '{\
- "name": "Extension Bundle 2",\
- "version": "1",\
- "manifest_version": 2,\
- "permissions": ["management", "http://google.com" ],\
- "content_script": [{\
- "matches": [ "http://www.example.com/*" ],\
- "js": [ "content_script.js" ],\
- "run_at": "document_start"\
- }]\
- }'
+ 'manifest': getManifest('bundle/extension2.json')
};
var extension3 = {
'id': 'begfmnajjkbjdgmffnjaojchoncnmngg',
- 'manifest':
- '{\
- "name": "Bundle App 2",\
- "version": "1",\
- "manifest_version": 2,\
- "app": {\
- "urls": [ "http://www.testapp2.com" ],\
- "launch": { "web_url": "http://www.testapp2.com" }\
- }\
- }'
+ 'manifest': getManifest('bundle/app2.json')
};
runTests([
« no previous file with comments | « chrome/test/data/extensions/api_test/webstore_private/install_bundle_invalid.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698