| Index: chrome/browser/ui/webui/print_preview/print_preview_handler.h
|
| diff --git a/chrome/browser/ui/webui/print_preview/print_preview_handler.h b/chrome/browser/ui/webui/print_preview/print_preview_handler.h
|
| index 09d3ab82fc25feb9b6d164af8860b2a2f769a1a8..ede09e3ef8e0b17b5ee428313f4e2b6aa1283ce9 100644
|
| --- a/chrome/browser/ui/webui/print_preview/print_preview_handler.h
|
| +++ b/chrome/browser/ui/webui/print_preview/print_preview_handler.h
|
| @@ -13,6 +13,7 @@
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/weak_ptr.h"
|
| +#include "chrome/common/features.h"
|
| #include "components/signin/core/browser/gaia_cookie_manager_service.h"
|
| #include "content/public/browser/web_ui_message_handler.h"
|
| #include "ui/shell_dialogs/select_file_dialog.h"
|
| @@ -149,11 +150,11 @@ class PrintPreviewHandler
|
| // Gets the printer capabilities. First element of |args| is the printer name.
|
| void HandleGetPrinterCapabilities(const base::ListValue* args);
|
|
|
| -#if defined(ENABLE_BASIC_PRINTING)
|
| +#if BUILDFLAG(ENABLE_BASIC_PRINT_DIALOG)
|
| // Asks the initiator renderer to show the native print system dialog. |args|
|
| // is unused.
|
| void HandleShowSystemDialog(const base::ListValue* args);
|
| -#endif // defined(ENABLE_BASIC_PRINTING)
|
| +#endif
|
|
|
| // Callback for the signin dialog to call once signin is complete.
|
| void OnSigninComplete();
|
|
|