Index: chrome/browser/resources/print_preview/native_layer.js |
diff --git a/chrome/browser/resources/print_preview/native_layer.js b/chrome/browser/resources/print_preview/native_layer.js |
index 7bda60e6c3bfdcab42359eac4f12d3a8514214a3..2cf0eaf6ea1985bab321b1cae6adc48290cdbcf3 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_; |