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

Unified Diff: printing/printed_document_linux.cc

Issue 2117713002: Print directly to CUPS using the IPP APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ippRead
Patch Set: Skip compiling the chromeos context if we don't compile against cups Created 4 years, 5 months 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: printing/printed_document_linux.cc
diff --git a/printing/printed_document_linux.cc b/printing/printed_document_linux.cc
index a104171ad56c144060be35c94c83fa36f937c1b5..74120ba0591bcc3cc05ae25133cfbb0f40a99df4 100644
--- a/printing/printed_document_linux.cc
+++ b/printing/printed_document_linux.cc
@@ -11,7 +11,7 @@
namespace printing {
-#if !defined(OS_CHROMEOS) && !defined(OS_ANDROID)
+#if !defined(OS_ANDROID)
void PrintedDocument::RenderPrintedPage(
const PrintedPage& page, PrintingContext* context) const {
#ifndef NDEBUG
@@ -32,6 +32,6 @@ void PrintedDocument::RenderPrintedPage(
}
}
}
-#endif // !OS_CHROMEOS && !OS_ANDROID
+#endif // !OS_ANDROID
} // namespace printing

Powered by Google App Engine
This is Rietveld 408576698