OLD | NEW |
| (Empty) |
1 // 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 | |
8 #include "printing/pdf_metafile_skia.h" | |
9 | |
10 namespace printing { | |
11 | |
12 // TODO(vitalybuka) Remove following typedefs and replace with PdfMetafileSkia. | |
13 typedef PdfMetafileSkia NativeMetafile; | |
14 typedef PdfMetafileSkia PreviewMetafile; | |
15 | |
16 } // namespace printing | |
17 | |
18 #endif // PRINTING_METAFILE_IMPL_H_ | |
OLD | NEW |