Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(707)

Unified Diff: chrome/utility/chrome_content_utility_client.cc

Issue 702603004: Renamed DISABLE_BASIC_PRINTING and ENABLE_FULL_PRINTING. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Wed Nov 5 02:31:54 PST 2014 Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/utility/chrome_content_utility_client.cc
diff --git a/chrome/utility/chrome_content_utility_client.cc b/chrome/utility/chrome_content_utility_client.cc
index 2d8759d5ae0025e03a053038ecae4746773dcc90..a813cef5d3e35573a7c5e9fa26b08f5222105a9b 100644
--- a/chrome/utility/chrome_content_utility_client.cc
+++ b/chrome/utility/chrome_content_utility_client.cc
@@ -41,7 +41,7 @@
#include "chrome/utility/media_galleries/media_metadata_parser.h"
#endif
-#if defined(ENABLE_FULL_PRINTING) || defined(OS_WIN)
+#if defined(ENABLE_PRINT_PREVIEW) || defined(OS_WIN)
#include "chrome/utility/printing_handler.h"
#endif
@@ -86,7 +86,7 @@ ChromeContentUtilityClient::ChromeContentUtilityClient()
handlers_.push_back(new image_writer::ImageWriterHandler());
#endif
-#if defined(ENABLE_FULL_PRINTING) || defined(OS_WIN)
+#if defined(ENABLE_PRINT_PREVIEW) || defined(OS_WIN)
handlers_.push_back(new PrintingHandler());
#endif
@@ -165,7 +165,7 @@ void ChromeContentUtilityClient::PreSandboxStartup() {
extensions::ExtensionsHandler::PreSandboxStartup();
#endif
-#if defined(ENABLE_FULL_PRINTING) || defined(OS_WIN)
+#if defined(ENABLE_PRINT_PREVIEW) || defined(OS_WIN)
PrintingHandler::PreSandboxStartup();
#endif

Powered by Google App Engine
This is Rietveld 408576698