diff options
Diffstat (limited to 'chrome/browser/resources/print_preview/native_layer.js')
-rw-r--r-- | chrome/browser/resources/print_preview/native_layer.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/chrome/browser/resources/print_preview/native_layer.js b/chrome/browser/resources/print_preview/native_layer.js index 7bda60e..2cf0eaf 100644 --- a/chrome/browser/resources/print_preview/native_layer.js +++ b/chrome/browser/resources/print_preview/native_layer.js @@ -481,7 +481,6 @@ cr.define('print_preview', function() { var nativeInitialSettings = new print_preview.NativeInitialSettings( initialSettings['printAutomaticallyInKioskMode'] || false, initialSettings['appKioskMode'] || false, - initialSettings['hidePrintWithSystemDialogLink'] || false, numberFormatSymbols[0] || ',', numberFormatSymbols[1] || '.', unitType, @@ -938,7 +937,6 @@ cr.define('print_preview', function() { function NativeInitialSettings( isInKioskAutoPrintMode, isInAppKioskMode, - hidePrintWithSystemDialogLink, thousandsDelimeter, decimalDelimeter, unitType, @@ -965,13 +963,6 @@ cr.define('print_preview', function() { this.isInAppKioskMode_ = isInAppKioskMode; /** - * Whether we should hide the link which shows the system print dialog. - * @type {boolean} - * @private - */ - this.hidePrintWithSystemDialogLink_ = hidePrintWithSystemDialogLink; - - /** * Character delimeter of thousands digits. * @type {string} * @private @@ -1059,14 +1050,6 @@ cr.define('print_preview', function() { return this.isInAppKioskMode_; }, - /** - * @return {boolean} Whether we should hide the link which shows the - system print dialog. - */ - get hidePrintWithSystemDialogLink() { - return this.hidePrintWithSystemDialogLink_; - }, - /** @return {string} Character delimeter of thousands digits. */ get thousandsDelimeter() { return this.thousandsDelimeter_; |