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

Unified Diff: chrome/browser/resources/shared/js/media_common.js

Issue 3083015: Allow open local pdf file from FileBrowse UI. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: change pdf support detect per arv Created 10 years, 4 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/browser/resources/filebrowse.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/shared/js/media_common.js
diff --git a/chrome/browser/resources/shared/js/media_common.js b/chrome/browser/resources/shared/js/media_common.js
index 85288093a49e3cf49b553fe46833c48a90f94663..86b48c87c297a7105059217ed4df2ff56554e8f2 100644
--- a/chrome/browser/resources/shared/js/media_common.js
+++ b/chrome/browser/resources/shared/js/media_common.js
@@ -17,3 +17,7 @@ function pathIsImageFile(path) {
function pathIsHtmlFile(path) {
return /\.(htm|html|txt)$/i.test(path);
}
+
+function pathIsPdfFile(path) {
+ return /\.(pdf)$/i.test(path);
+}
« no previous file with comments | « chrome/browser/resources/filebrowse.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698