| Index: chrome/browser/printing/print_view_manager.h
|
| diff --git a/chrome/browser/printing/print_view_manager.h b/chrome/browser/printing/print_view_manager.h
|
| index 444f00378db7807d33d4f044cf46b173d51eebb0..aea5d8345bbeefcff0f990a13c7efcf826d774d9 100644
|
| --- a/chrome/browser/printing/print_view_manager.h
|
| +++ b/chrome/browser/printing/print_view_manager.h
|
| @@ -22,7 +22,7 @@ class PrintViewManager : public PrintViewManagerBase,
|
| public:
|
| ~PrintViewManager() override;
|
|
|
| -#if !defined(DISABLE_BASIC_PRINTING)
|
| +#if defined(ENABLE_BASIC_PRINTING)
|
| // Same as PrintNow(), but for the case where a user prints with the system
|
| // dialog from print preview.
|
| bool PrintForSystemDialogNow();
|
| @@ -31,7 +31,7 @@ class PrintViewManager : public PrintViewManagerBase,
|
| // show the native system dialog. This can happen from both initiator and
|
| // preview dialog.
|
| bool BasicPrint();
|
| -#endif // !DISABLE_BASIC_PRINTING
|
| +#endif // ENABLE_BASIC_PRINTING
|
|
|
| // Initiate print preview of the current document by first notifying the
|
| // renderer. Since this happens asynchronous, the print preview dialog
|
|
|