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

Unified Diff: chrome/test/data/extensions/api_test/file_browser/retain_entry/manifest.json

Issue 656733002: Fix filesystem.retainEntry API to handle non-native directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed windows build. 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/file_browser/retain_entry/manifest.json
diff --git a/chrome/test/data/extensions/api_test/file_browser/handler_test_runner/manifest.json b/chrome/test/data/extensions/api_test/file_browser/retain_entry/manifest.json
similarity index 65%
copy from chrome/test/data/extensions/api_test/file_browser/handler_test_runner/manifest.json
copy to chrome/test/data/extensions/api_test/file_browser/retain_entry/manifest.json
index 4ff67d00624a3a0ac1292311716be375544d8b00..301f1487eb92af0c8a97a1354a52e713dac66def 100644
--- a/chrome/test/data/extensions/api_test/file_browser/handler_test_runner/manifest.json
+++ b/chrome/test/data/extensions/api_test/file_browser/retain_entry/manifest.json
@@ -1,18 +1,23 @@
{
- // chrome-extension://pkplfbidichfdicaijlchgnapepdginl
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtDfX9dHNh948bt00YhZBm3P6E5QLaOt+v8kXVtibQfiPtOD2FTScB/f0wX/EQWVO7BkaSOsRkTPcPIgocyMPYr2FLgqGLFlYT9nQpKJZUFNF5oJ5rG6Nv7ppf4zEB3j6da1IBRTz2yOZ+6O1TMZxol/V62/QcqrJeggsHTEPGLdr9Ua4b1Ka0xKJnJngZljsbw93FI1o+P9dAh5BS6wTPiZI/vmJVjvMTkSTnaZ3n9Go2t7A0XLcSxLcVyuLAd2mAvSN0mIviOukdM66wr7llif71nKuUt+4qvlr/r9HfwzN6pA4jkwhtS1UD+3CmB+wsHwsnohNcuu4FIQ6rgq/7QIDAQAB",
- "name": "chrome.fileManagerPrivate tests",
+ "name": "retain entry on drive volume",
"version": "0.1",
"manifest_version": 2,
- "description": "Tests of chrome.fileManagerPrivate.* component extension methods",
"app": {
"background": {
- "scripts": ["test.js"]
+ "scripts": ["background.js"]
+ }
+ },
+ "file_handlers": {
+ "test_handler": {
+ "extensions": ["*"]
}
},
"permissions": [
- "fileBrowserHandler",
- "fileManagerPrivate"
+ "fileSystem",
+ "fileSystem.directory",
+ "fileSystem.retainEntries",
+ "storage",
+ "unlimitedStorage"
]
}
-

Powered by Google App Engine
This is Rietveld 408576698