| Index: chrome/browser/resources/pdf/pdf.js
|
| diff --git a/chrome/browser/resources/pdf/pdf.js b/chrome/browser/resources/pdf/pdf.js
|
| index 1d27c57cbdaabe0c97dd8d557d254aaee84a7b92..ef62ca7988c55396a7a89d59c0ff8b0b991caa07 100644
|
| --- a/chrome/browser/resources/pdf/pdf.js
|
| +++ b/chrome/browser/resources/pdf/pdf.js
|
| @@ -291,6 +291,13 @@ PDFViewer.prototype = {
|
| e.preventDefault();
|
| }
|
| return;
|
| + case 71: // g key.
|
| + if (this.isMaterial_ && (e.ctrlKey || e.metaKey)) {
|
| + this.pageIndicator_.select();
|
| + // To prevent the default "find text" behaviour in Chrome.
|
| + e.preventDefault();
|
| + }
|
| + return;
|
| case 80: // p key.
|
| if (e.ctrlKey || e.metaKey) {
|
| this.print_();
|
|
|