diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-22 00:05:17 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-22 00:05:17 +0000 |
commit | c8f73aba9f1fd8b2e0a34fcca08a1e968ddd8244 (patch) | |
tree | d2658c6f1da345a1f38531809250c934dd4d73fa /chrome/tools | |
parent | 090d7108424b5a8600e1b590b2227e52f23d6e7e (diff) | |
download | chromium_src-c8f73aba9f1fd8b2e0a34fcca08a1e968ddd8244.zip chromium_src-c8f73aba9f1fd8b2e0a34fcca08a1e968ddd8244.tar.gz chromium_src-c8f73aba9f1fd8b2e0a34fcca08a1e968ddd8244.tar.bz2 |
When we detect a PDF with an unsupported feature, ask the user if they want to view it with Adobe Reader if it's installed. If it's not, ask them if they want to launch the url to install it. If it's installed and out of date, show an interstitial.
BUG=65339
Review URL: http://codereview.chromium.org/6259008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72240 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools')
-rw-r--r-- | chrome/tools/chromeactions.txt | 11 | ||||
-rwxr-xr-x | chrome/tools/extract_actions.py | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/chrome/tools/chromeactions.txt b/chrome/tools/chromeactions.txt index 675a4e2..e1d450f 100644 --- a/chrome/tools/chromeactions.txt +++ b/chrome/tools/chromeactions.txt @@ -947,6 +947,17 @@ 0x99ed44568e5ff51a PDF.ZoomFromBrowser 0x1d57434947820665 PDF.ZoomInButton 0x40ca10ced9d81d17 PDF.ZoomOutButton +0x0b951f22f9dff291 PDF_Unsupported_3D +0xd39cd7449ac8702e PDF_Unsupported_Attachments +0x922a34409936d3c6 PDF_Unsupported_Digital_Signatures +0xc09901d647ad722f PDF_Unsupported_Movie +0x282157da06d467b9 PDF_Unsupported_Portfolios +0x74d8faa1b4e92791 PDF_Unsupported_Rights_Management +0x571f65a8518214ae PDF_Unsupported_Screen +0xdf8b4231d4bd3f90 PDF_Unsupported_Shared_Form +0xb7474a7496f9a77e PDF_Unsupported_Shared_Review +0x6efe497913838ea5 PDF_Unsupported_Sound +0x08640e2d5578cf94 PDF_Unsupported_XFA 0xee3677bcca83ece9 PageDown 0x9b869c510c75c582 PageUp 0x9ba3ff80fde405cd PasswordManager_Disabled diff --git a/chrome/tools/extract_actions.py b/chrome/tools/extract_actions.py index e28c85b..b111182 100755 --- a/chrome/tools/extract_actions.py +++ b/chrome/tools/extract_actions.py @@ -162,6 +162,17 @@ def AddClosedSourceActions(actions): actions.add('PDF.ZoomFromBrowser') actions.add('PDF.ZoomOutButton') actions.add('PDF.ZoomInButton') + actions.add('PDF_Unsupported_Rights_Management') + actions.add('PDF_Unsupported_XFA') + actions.add('PDF_Unsupported_3D') + actions.add('PDF_Unsupported_Movie') + actions.add('PDF_Unsupported_Sound') + actions.add('PDF_Unsupported_Screen') + actions.add('PDF_Unsupported_Portfolios') + actions.add('PDF_Unsupported_Attachments') + actions.add('PDF_Unsupported_Digital_Signatures') + actions.add('PDF_Unsupported_Shared_Review') + actions.add('PDF_Unsupported_Shared_Form') def AddAboutFlagsActions(actions): """This parses the experimental feature flags for UMA actions. |