Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(567)

Unified Diff: chrome/browser/resources/print_preview/native_layer.js

Issue 407733002: [JS Changes] Support NumCopies print preset (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Name changes Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 ca7ff32c84fe2e115cbd8bd8a417a0213812dacd..db1cfc0dd640090056673b544c02b4abc59ac3b3 100644
--- a/chrome/browser/resources/print_preview/native_layer.js
+++ b/chrome/browser/resources/print_preview/native_layer.js
@@ -61,6 +61,8 @@ cr.define('print_preview', function() {
global.onPrivetPrintFailed = this.onPrivetPrintFailed_.bind(this);
global.onEnableManipulateSettingsForTest =
this.onEnableManipulateSettingsForTest_.bind(this);
+ global.printPresetOptionsFromDocument =
+ this.onPrintPresetOptionsFromDocument_.bind(this);
};
/**
@@ -95,6 +97,7 @@ cr.define('print_preview', function() {
PRIVET_CAPABILITIES_SET:
'print_preview.NativeLayer.PRIVET_CAPABILITIES_SET',
PRIVET_PRINT_FAILED: 'print_preview.NativeLayer.PRIVET_PRINT_FAILED',
+ PRINT_PRESET_OPTIONS: 'print_preview.NativeLayer.PRINT_PRESET_OPTIONS',
};
/**
@@ -664,6 +667,20 @@ cr.define('print_preview', function() {
},
/**
+ * Update print preset options from source PDF document.
+ * Called from PrintPreviewUI::OnSetOptionsFromDocument().
+ * @param {object} options Print preset options as mentioned in source
+ * document.
+ * @private
+ */
+ onPrintPresetOptionsFromDocument_: function(options) {
+ var printPresetOptionsEvent = new Event(
+ NativeLayer.EventType.PRINT_PRESET_OPTIONS);
+ printPresetOptionsEvent.optionsFromDocument = options;
+ this.dispatchEvent(printPresetOptionsEvent);
+ },
+
+ /**
* Simulates a user click on the print preview dialog cancel button. Used
* only for testing.
* @private

Powered by Google App Engine
This is Rietveld 408576698