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

Unified Diff: chrome/browser/download/download_prefs.h

Issue 665163005: Add option to open PDFs in system viewer to OS X and Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Harmonize the strings a bit better. Created 6 years, 2 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/browser/download/download_prefs.h
diff --git a/chrome/browser/download/download_prefs.h b/chrome/browser/download/download_prefs.h
index 8d3db57d3e675b58c2ea8e401f148cc04d7dcb83..8418be04f1765cdff090e7fa6126920c23443396 100644
--- a/chrome/browser/download/download_prefs.h
+++ b/chrome/browser/download/download_prefs.h
@@ -80,6 +80,14 @@ class DownloadPrefs {
// Return whether the user prefers to open PDF downloads in Adobe Reader.
bool ShouldOpenPdfInAdobeReader() const;
+#elif defined(OS_MACOSX) || defined(OS_LINUX)
+ // Store the user preference to disk. If |should_open| is true, also disable
+ // the built-in PDF plugin. If |should_open| is false, enable the PDF plugin.
+ void SetShouldOpenPdfInSystemReader(bool should_open);
+
+ // Return whether the user prefers to open PDF downloads in the platform's
+ // default reader.
+ bool ShouldOpenPdfInSystemReader() const;
#endif
void ResetAutoOpen();
@@ -105,6 +113,8 @@ class DownloadPrefs {
#if defined(OS_WIN)
bool should_open_pdf_in_adobe_reader_;
+#elif defined(OS_MACOSX) || defined(OS_LINUX)
+ bool should_open_pdf_in_system_reader_;
#endif
DISALLOW_COPY_AND_ASSIGN(DownloadPrefs);

Powered by Google App Engine
This is Rietveld 408576698