diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-07 22:01:52 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-07 22:01:52 +0000 |
commit | e059878de96a6fcdc70dfc3bf13d37be6d1a697a (patch) | |
tree | 4387419d69b2946a556e43d52596c78c07582e17 /printing/printed_document_mac.cc | |
parent | cceaf8512b4cb70a81db1f371ae094e2f2d3f645 (diff) | |
download | chromium_src-e059878de96a6fcdc70dfc3bf13d37be6d1a697a.zip chromium_src-e059878de96a6fcdc70dfc3bf13d37be6d1a697a.tar.gz chromium_src-e059878de96a6fcdc70dfc3bf13d37be6d1a697a.tar.bz2 |
Printing: Refactor a few helper methods implemented per-platform to clean up
ifdef mess in PrintedDocument implementation.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3564016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61865 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/printed_document_mac.cc')
-rw-r--r-- | printing/printed_document_mac.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/printing/printed_document_mac.cc b/printing/printed_document_mac.cc index f729215..8ba8b813 100644 --- a/printing/printed_document_mac.cc +++ b/printing/printed_document_mac.cc @@ -40,4 +40,10 @@ void PrintedDocument::RenderPrintedPage( // TODO(stuartmorgan): Print the header and footer. } +void PrintedDocument::DrawHeaderFooter(gfx::NativeDrawingContext context, + std::wstring text, + gfx::Rect bounds) const { + NOTIMPLEMENTED(); +} + } // namespace printing |