| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef PRINTING_NATIVE_METAFILE_H_ | 5 #ifndef PRINTING_NATIVE_METAFILE_H_ |
| 6 #define PRINTING_NATIVE_METAFILE_H_ | 6 #define PRINTING_NATIVE_METAFILE_H_ |
| 7 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 | 9 |
| 10 // Define a metafile format for the current platform. We use this platform | 10 // Define a metafile format for the current platform. We use this platform |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #elif defined(OS_MACOSX) | 27 #elif defined(OS_MACOSX) |
| 28 | 28 |
| 29 #include "printing/pdf_metafile_mac.h" | 29 #include "printing/pdf_metafile_mac.h" |
| 30 | 30 |
| 31 namespace printing { | 31 namespace printing { |
| 32 | 32 |
| 33 typedef PdfMetafile NativeMetafile; | 33 typedef PdfMetafile NativeMetafile; |
| 34 | 34 |
| 35 } // namespace printing | 35 } // namespace printing |
| 36 | 36 |
| 37 #elif defined(OS_LINUX) | 37 #elif defined(OS_POSIX) |
| 38 | 38 |
| 39 #include "printing/pdf_ps_metafile_linux.h" | 39 #include "printing/pdf_ps_metafile_cairo.h" |
| 40 | 40 |
| 41 namespace printing { | 41 namespace printing { |
| 42 | 42 |
| 43 typedef PdfPsMetafile NativeMetafile; | 43 typedef PdfPsMetafile NativeMetafile; |
| 44 | 44 |
| 45 } // namespace printing | 45 } // namespace printing |
| 46 | 46 |
| 47 #endif | 47 #endif |
| 48 | 48 |
| 49 | 49 |
| 50 #endif // PRINTING_NATIVE_METAFILE_H_ | 50 #endif // PRINTING_NATIVE_METAFILE_H_ |
| OLD | NEW |