| 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 b82398511a20457ec6b83f37b37230ab09b07cd5..58aff64fc29e8a3a243f07a8407a5fbc7ee1963e 100644
|
| --- a/chrome/browser/resources/print_preview/native_layer.js
|
| +++ b/chrome/browser/resources/print_preview/native_layer.js
|
| @@ -67,8 +67,8 @@ cr.define('print_preview', function() {
|
| this.onEnableManipulateSettingsForTest_.bind(this);
|
| global.printPresetOptionsFromDocument =
|
| this.onPrintPresetOptionsFromDocument_.bind(this);
|
| - global.detectDistillablePage =
|
| - this.detectDistillablePage_.bind(this);
|
| + global.allowDistillPage =
|
| + this.allowDistillPage_.bind(this);
|
| global.onProvisionalPrinterResolved =
|
| this.onProvisionalDestinationResolved_.bind(this);
|
| global.failedToResolveProvisionalPrinter =
|
| @@ -747,7 +747,7 @@ cr.define('print_preview', function() {
|
| * DOM Distiller.
|
| * @private
|
| */
|
| - detectDistillablePage_: function() {
|
| + allowDistillPage_: function() {
|
| var allowDistillPageEvent = new Event(
|
| NativeLayer.EventType.ALLOW_DISTILL_PAGE);
|
| this.dispatchEvent(allowDistillPageEvent);
|
|
|