Index: chrome/browser/resources/chromeos/chromevox/chromevox/injected/pdf_processor.js |
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/pdf_processor.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/pdf_processor.js |
index 1cfa2cc9472654f1bead7c1181d83d253500866d..b6ca6d1fb5a11c53d124d7e3671eb9cd111d74ce 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/pdf_processor.js |
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/pdf_processor.js |
@@ -8,6 +8,7 @@ |
*/ |
goog.provide('cvox.PdfProcessor'); |
+goog.require('cvox.QueueMode'); |
/** |
* Process PDFs created with Chrome's built-in PDF plug-in, which has an |
@@ -31,7 +32,8 @@ cvox.PdfProcessor.processEmbeddedPdfs = function() { |
} |
if (!info.copyable) { |
cvox.ChromeVox.tts.speak( |
- 'Unable to access copy-protected PDF. Skipping.'); |
+ cvox.ChromeVox.msgs.getMsg('copy_protected_pdf'), |
+ cvox.QueueMode.QUEUE); |
continue; |
} |