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

Unified Diff: printing/printed_document.cc

Issue 8763007: Clean up cloud printing aura stub code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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: printing/printed_document.cc
diff --git a/printing/printed_document.cc b/printing/printed_document.cc
index 28a70e9ac73f567d6ba8d9c5fae71c70eef4c89c..8cfcee51a4878dddf64e3b8aa68c8062d0eab5f0 100644
--- a/printing/printed_document.cc
+++ b/printing/printed_document.cc
@@ -230,4 +230,12 @@ PrintedDocument::Immutable::Immutable(const PrintSettings& settings,
PrintedDocument::Immutable::~Immutable() {
}
+#if defined(OS_POSIX) && defined(USE_AURA)
Albert Bodenhamer 2011/12/01 01:09:05 Shouldn't this be OS_CHROMEOS || USE_AURA?
jennyz 2011/12/02 14:40:18 This function signature is only declared for OS_PO
Albert Bodenhamer 2011/12/02 17:57:17 On chrome os there is no native printing, only clo
+// This function is not used on aura linux/chromeos.
+void PrintedDocument::RenderPrintedPage(const PrintedPage& page,
+ PrintingContext* context) const {
+ NOTIMPLEMENTED();
Albert Bodenhamer 2011/12/01 00:47:23 I don't think NOTIMPLEMENTED is correct here. NOT
jennyz 2011/12/02 14:40:18 Done.
+}
+#endif
+
} // namespace printing

Powered by Google App Engine
This is Rietveld 408576698