| Index: chrome/browser/resources/pdf/main.js
|
| diff --git a/chrome/browser/resources/pdf/main.js b/chrome/browser/resources/pdf/main.js
|
| index 6900c6dc091ce2640d6c3b5c08fedf1ff59edf45..07fa2e047b30c5cf4845d2cc773a92e709e83caa 100644
|
| --- a/chrome/browser/resources/pdf/main.js
|
| +++ b/chrome/browser/resources/pdf/main.js
|
| @@ -42,18 +42,6 @@
|
|
|
| function generateStreamDetailsAndInitViewer() {
|
| var url = window.location.search.substring(1);
|
| -
|
| - // Hack to enable custom scrollbars for print preview on non-retina mac
|
| - // displays. Remove after crbug.com/466039 is fixed.
|
| - if (url.indexOf(IS_MAC_PARAM) === 0) {
|
| - url = url.substring(IS_MAC_PARAM.length);
|
| - var link = document.createElement('link');
|
| - link.rel = 'stylesheet';
|
| - link.type = 'text/css';
|
| - link.href = 'scrollbars_mac.css';
|
| - document.getElementsByTagName('head')[0].appendChild(link);
|
| - }
|
| -
|
| var streamDetails = {
|
| streamUrl: url,
|
| originalUrl: url,
|
|
|