Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Side by Side Diff: printing/pdf_metafile_skia.h

Issue 1544623002: Switch to standard integer types in printing/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « printing/pdf_metafile_cg_mac_unittest.cc ('k') | printing/pdf_metafile_skia.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_PDF_METAFILE_SKIA_H_ 5 #ifndef PRINTING_PDF_METAFILE_SKIA_H_
6 #define PRINTING_PDF_METAFILE_SKIA_H_ 6 #define PRINTING_PDF_METAFILE_SKIA_H_
7 7
8 #include "base/basictypes.h" 8 #include <stdint.h>
9
9 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
11 #include "build/build_config.h" 13 #include "build/build_config.h"
12 #include "printing/metafile.h" 14 #include "printing/metafile.h"
13 #include "skia/ext/platform_canvas.h" 15 #include "skia/ext/platform_canvas.h"
14 16
15 #if defined(OS_WIN) 17 #if defined(OS_WIN)
16 #include <windows.h> 18 #include <windows.h>
17 #endif 19 #endif
18 20
19 #if defined(OS_CHROMEOS) || defined(OS_ANDROID) 21 #if defined(OS_CHROMEOS) || defined(OS_ANDROID)
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 85
84 private: 86 private:
85 scoped_ptr<PdfMetafileSkiaData> data_; 87 scoped_ptr<PdfMetafileSkiaData> data_;
86 88
87 DISALLOW_COPY_AND_ASSIGN(PdfMetafileSkia); 89 DISALLOW_COPY_AND_ASSIGN(PdfMetafileSkia);
88 }; 90 };
89 91
90 } // namespace printing 92 } // namespace printing
91 93
92 #endif // PRINTING_PDF_METAFILE_SKIA_H_ 94 #endif // PRINTING_PDF_METAFILE_SKIA_H_
OLDNEW
« no previous file with comments | « printing/pdf_metafile_cg_mac_unittest.cc ('k') | printing/pdf_metafile_skia.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698