Index: chrome/browser/ui/tab_helpers.cc |
diff --git a/chrome/browser/ui/tab_helpers.cc b/chrome/browser/ui/tab_helpers.cc |
index aec25c888c8c444430098d40a4ca9563f10fff8b..a5a62620eafbc68cb563e6e2fbfbff7255000c47 100644 |
--- a/chrome/browser/ui/tab_helpers.cc |
+++ b/chrome/browser/ui/tab_helpers.cc |
@@ -77,12 +77,12 @@ |
#endif |
#if defined(ENABLE_PRINTING) |
-#if defined(ENABLE_FULL_PRINTING) |
+#if defined(ENABLE_PRINT_PREVIEW) |
#include "chrome/browser/printing/print_preview_message_handler.h" |
#include "chrome/browser/printing/print_view_manager.h" |
#else |
#include "chrome/browser/printing/print_view_manager_basic.h" |
-#endif // defined(ENABLE_FULL_PRINTING) |
+#endif // defined(ENABLE_PRINT_PREVIEW) |
#endif // defined(ENABLE_PRINTING) |
#if defined(ENABLE_ONE_CLICK_SIGNIN) |
@@ -205,12 +205,12 @@ void TabHelpers::AttachTabHelpers(WebContents* web_contents) { |
#endif |
#if defined(ENABLE_PRINTING) && !defined(OS_ANDROID) |
-#if defined(ENABLE_FULL_PRINTING) |
+#if defined(ENABLE_PRINT_PREVIEW) |
printing::PrintViewManager::CreateForWebContents(web_contents); |
printing::PrintPreviewMessageHandler::CreateForWebContents(web_contents); |
#else |
printing::PrintViewManagerBasic::CreateForWebContents(web_contents); |
-#endif // defined(ENABLE_FULL_PRINTING) |
+#endif // defined(ENABLE_PRINT_PREVIEW) |
#endif // defined(ENABLE_PRINTING) && !defined(OS_ANDROID) |
if (CommandLine::ForCurrentProcess()->HasSwitch( |