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

Unified Diff: chrome/test/data/extensions/api_test/file_system/get_volume_list_not_kiosk_session/manifest.json

Issue 1029803004: Add chrome.fileSystem.GetVolumeList(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed chrome_extensions.js. Created 5 years, 8 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_system/get_volume_list_not_kiosk_session/manifest.json
diff --git a/chrome/test/data/extensions/api_test/file_system/get_volume_list_not_kiosk_session/manifest.json b/chrome/test/data/extensions/api_test/file_system/get_volume_list_not_kiosk_session/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..3a3705371ef534d9b25f668ced3f32f80a211d3a
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/file_system/get_volume_list_not_kiosk_session/manifest.json
@@ -0,0 +1,15 @@
+{
+ "name": "chrome.fileSystem.getVolumeList not in kiosk session test",
+ "version": "0.1",
+ "description": "Test for getting a list of available volumes via chrome.fileSystem.getVolumeList when not running in the kiosk session.",
+ "app": {
+ "background": {
+ "scripts": ["background.js"]
+ }
+ },
+ "permissions": [
+ {
+ "fileSystem": ["requestFileSystem"]
+ }
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698