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

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

Issue 9395077: [filebrowser] Introduce View action for supported file types (e.g. pdf). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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 125140)
+++ chrome/test/data/extensions/api_test/filesystem_handler/manifest.json (working copy)
@@ -9,16 +9,16 @@
},
"file_browser_handlers": [
{
- "id" : "TextAction",
- "default_title" : "txt file action.",
+ "id" : "AbcAction",
+ "default_title" : "abc file action.",
"default_icon" : "icon.png",
- "file_filters" : [ "filesystem:*.tXt", "filesystem:*.text" ]
+ "file_filters" : [ "filesystem:*.aBc", "filesystem:*.abcfile" ]
},
{
- "id" : "JpegAction",
- "default_title" : "jpg file action",
+ "id" : "123Action",
+ "default_title" : "123 file action",
"default_icon" : "icon.png",
- "file_filters" : [ "filesystem:*.jpg", "filesystem:*.jpeg" ]
+ "file_filters" : [ "filesystem:*.123", "filesystem:*.1234" ]
},
{
"id" : "BaseAction",

Powered by Google App Engine
This is Rietveld 408576698