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

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

Issue 6749021: Added new fileBrowserPrivate and fileHandler extension APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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/filesystem_handler/manifest.json
===================================================================
--- chrome/test/data/extensions/api_test/filesystem_handler/manifest.json (revision 0)
+++ chrome/test/data/extensions/api_test/filesystem_handler/manifest.json (revision 0)
@@ -0,0 +1,21 @@
+{
+ "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQChptAQ0n4R56N03nWQ1ogR7DVRBjGo80Vw6G9KLjzZv44D8rq5Q5IkeQrtKgWyZfXevlsCe3LaLo18rcz8iZx6lK2xhLdUR+ORjsjuBfdEL5a5cWeRTSxf75AcqndQsmpwMBdrMTCZ8jQNusUI+XlrihLNNJuI5TM4vNINI5bYFQIBIw==",
+ "name": "ChromeOS file system intent hanlder extension",
+ "version": "0.1",
+ "description": "Tests of chrome.fileSystem.* methods",
+ "background_page": "background.html",
+ "file_browser_handlers": [
+ {
+ "id" : "TestAction",
+ "default_title" : "Default title",
+ "default_icon" : "icon.png",
+ "file_filters" : [ "filesystem:*.txt" ]
+ }
+ ],
+ "permissions": [
+ "fileBrowserHandler",
+ "tabs",
+ "unlimitedStorage"
+ ]
+}
+

Powered by Google App Engine
This is Rietveld 408576698