Index: chrome/browser/browser_process_impl.cc |
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc |
index 1f9c3fd5da563b1b5153a657134f6c1bb2df6728..f005b88894af22a1cab5774b184ffc4016a05777 100644 |
--- a/chrome/browser/browser_process_impl.cc |
+++ b/chrome/browser/browser_process_impl.cc |
@@ -563,7 +563,7 @@ printing::PrintJobManager* BrowserProcessImpl::print_job_manager() { |
printing::PrintPreviewDialogController* |
BrowserProcessImpl::print_preview_dialog_controller() { |
-#if defined(ENABLE_PRINTING) |
+#if defined(ENABLE_FULL_PRINTING) |
DCHECK(CalledOnValidThread()); |
if (!print_preview_dialog_controller_.get()) |
CreatePrintPreviewDialogController(); |
@@ -576,7 +576,7 @@ printing::PrintPreviewDialogController* |
printing::BackgroundPrintingManager* |
BrowserProcessImpl::background_printing_manager() { |
-#if defined(ENABLE_PRINTING) |
+#if defined(ENABLE_FULL_PRINTING) |
DCHECK(CalledOnValidThread()); |
if (!background_printing_manager_.get()) |
CreateBackgroundPrintingManager(); |
@@ -964,7 +964,7 @@ void BrowserProcessImpl::CreateStatusTray() { |
} |
void BrowserProcessImpl::CreatePrintPreviewDialogController() { |
-#if defined(ENABLE_PRINTING) |
+#if defined(ENABLE_FULL_PRINTING) |
DCHECK(print_preview_dialog_controller_.get() == NULL); |
print_preview_dialog_controller_ = |
new printing::PrintPreviewDialogController(); |
@@ -974,7 +974,7 @@ void BrowserProcessImpl::CreatePrintPreviewDialogController() { |
} |
void BrowserProcessImpl::CreateBackgroundPrintingManager() { |
-#if defined(ENABLE_PRINTING) |
+#if defined(ENABLE_FULL_PRINTING) |
DCHECK(background_printing_manager_.get() == NULL); |
background_printing_manager_.reset(new printing::BackgroundPrintingManager()); |
#else |