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

Side by Side Diff: printing/metafile.h

Issue 1544623002: Switch to standard integer types in printing/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months 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/image_win.cc ('k') | printing/metafile.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_METAFILE_H_ 5 #ifndef PRINTING_METAFILE_H_
6 #define PRINTING_METAFILE_H_ 6 #define PRINTING_METAFILE_H_
7 7
8 #include <stdint.h>
9
8 #include <vector> 10 #include <vector>
9 11
10 #include "base/basictypes.h" 12 #include "base/macros.h"
11 #include "build/build_config.h" 13 #include "build/build_config.h"
12 #include "printing/printing_export.h" 14 #include "printing/printing_export.h"
13 #include "ui/gfx/native_widget_types.h" 15 #include "ui/gfx/native_widget_types.h"
14 16
15 #if defined(OS_WIN) 17 #if defined(OS_WIN)
16 #include <windows.h> 18 #include <windows.h>
17 #elif defined(OS_MACOSX) 19 #elif defined(OS_MACOSX)
18 #include <ApplicationServices/ApplicationServices.h> 20 #include <ApplicationServices/ApplicationServices.h>
19 #include <CoreFoundation/CoreFoundation.h> 21 #include <CoreFoundation/CoreFoundation.h>
20 #include "base/mac/scoped_cftyperef.h" 22 #include "base/mac/scoped_cftyperef.h"
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 159
158 bool SaveTo(base::File* file) const override; 160 bool SaveTo(base::File* file) const override;
159 161
160 private: 162 private:
161 DISALLOW_COPY_AND_ASSIGN(Metafile); 163 DISALLOW_COPY_AND_ASSIGN(Metafile);
162 }; 164 };
163 165
164 } // namespace printing 166 } // namespace printing
165 167
166 #endif // PRINTING_METAFILE_H_ 168 #endif // PRINTING_METAFILE_H_
OLDNEW
« no previous file with comments | « printing/image_win.cc ('k') | printing/metafile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698