From e5b307fe287acee54d60852addea15441243a4c7 Mon Sep 17 00:00:00 2001 From: "ben@chromium.org" Date: Thu, 6 Oct 2011 22:55:28 +0000 Subject: Get Chrome to build & link with USE_AURA on Windows again.BUG=noneTEST=none Review URL: http://codereview.chromium.org/8174005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104382 0039d316-1c4b-4281-b951-d872f2087c98 --- printing/printed_document_aura.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'printing') diff --git a/printing/printed_document_aura.cc b/printing/printed_document_aura.cc index a5e4b03..2c204c0 100644 --- a/printing/printed_document_aura.cc +++ b/printing/printed_document_aura.cc @@ -8,11 +8,13 @@ namespace printing { -void PrintedDocument::RenderPrintedPage( - const PrintedPage& page, PrintingContext* context) const { +#if defined(OS_POSIX) +void PrintedDocument::RenderPrintedPage(const PrintedPage& page, + PrintingContext* context) const { // TODO(saintlou): This a stub to allow us to build under Aura. // See issue: http://crbug.com/99282 NOTIMPLEMENTED(); } +#endif } // namespace printing -- cgit v1.1