blob: 840a1cede68ccad26eac75303d9ffedf1fcd7b17 [file] [log] [blame]
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001// Copyright (c) 2011 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef PRINTING_METAFILE_IMPL_H_
6#define PRINTING_METAFILE_IMPL_H_
7
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00008#include "printing/pdf_metafile_skia.h"
9
Torne (Richard Coles)58218062012-11-14 11:43:16 +000010#if defined(OS_WIN)
11#include "printing/emf_win.h"
Torne (Richard Coles)58218062012-11-14 11:43:16 +000012#endif
13
14namespace printing {
15
16#if defined(OS_WIN)
17typedef Emf NativeMetafile;
18typedef PdfMetafileSkia PreviewMetafile;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000019#elif defined(OS_POSIX)
20typedef PdfMetafileSkia NativeMetafile;
21typedef PdfMetafileSkia PreviewMetafile;
22#endif
23
24} // namespace printing
25
26#endif // PRINTING_METAFILE_IMPL_H_