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

Unified Diff: chrome/browser/resources/filebrowse.html

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 | « no previous file | chrome/browser/resources/shared/js/media_common.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/filebrowse.html
diff --git a/chrome/browser/resources/filebrowse.html b/chrome/browser/resources/filebrowse.html
index 786e513002b9351050023988124125b82155be17..39aba803762f9d9fc3ac6089b64be850c95d291f 100644
--- a/chrome/browser/resources/filebrowse.html
+++ b/chrome/browser/resources/filebrowse.html
@@ -577,6 +577,10 @@ function partial(fn, var_args) {
};
}
+function supportsPdf() {
+ return 'application/pdf' in navigator.mimeTypes;
+}
+
var currentSavedPath = '';
var currentNode = -1;
var menus = [];
@@ -1260,7 +1264,7 @@ function showImage(path) {
}
}
-function showText(path) {
+function showPath(path) {
chrome.send('openNewFullWindow', ['file://' + path]);
}
@@ -1389,9 +1393,15 @@ function getFunctionForItem(path, id, isDirectory) {
}
if (pathIsHtmlFile(path)) {
return function() {
- showText(path);
+ showPath(path);
+ }
+ }
+ if (pathIsPdfFile(path) && supportsPdf()) {
+ return function() {
+ showPath(path);
}
}
+
return getUnknownFileTypeHandler();
}
@@ -1466,7 +1476,7 @@ function createNewItem(title, path, isDirectory) {
menu.appendChild(flickritem);
menu.appendChild(emailitem);
}
- if ((pathIsVideoFile(path) || pathIsAudioFile(path)) &&
+ if ((pathIsVideoFile(path) || pathIsAudioFile(path)) &&
mediaPlayerEnabled) {
var enqueueitem = document.createElement('div');
enqueueitem.textContent = localStrings.getString('enqueue');
« no previous file with comments | « no previous file | chrome/browser/resources/shared/js/media_common.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698