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

Side by Side Diff: printing/image.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/emf_win_unittest.cc ('k') | printing/image.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) 2011 The Chromium Authors. All rights reserved. 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 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_IMAGE_H_ 5 #ifndef PRINTING_IMAGE_H_
6 #define PRINTING_IMAGE_H_ 6 #define PRINTING_IMAGE_H_
7 7
8 #include <stddef.h>
9 #include <stdint.h>
10
8 #include <string> 11 #include <string>
9 #include <vector> 12 #include <vector>
10 13
11 #include "base/basictypes.h"
12 #include "base/logging.h" 14 #include "base/logging.h"
13 #include "printing/printing_export.h" 15 #include "printing/printing_export.h"
14 #include "ui/gfx/geometry/size.h" 16 #include "ui/gfx/geometry/size.h"
15 17
16 namespace base { 18 namespace base {
17 class FilePath; 19 class FilePath;
18 } 20 }
19 21
20 namespace printing { 22 namespace printing {
21 23
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 // Flag to signal if the comparison functions should ignore the alpha channel. 94 // Flag to signal if the comparison functions should ignore the alpha channel.
93 const bool ignore_alpha_; // Currently always true. 95 const bool ignore_alpha_; // Currently always true.
94 96
95 // Prevent operator= (this function has no implementation) 97 // Prevent operator= (this function has no implementation)
96 Image& operator=(const Image& image); 98 Image& operator=(const Image& image);
97 }; 99 };
98 100
99 } // namespace printing 101 } // namespace printing
100 102
101 #endif // PRINTING_IMAGE_H_ 103 #endif // PRINTING_IMAGE_H_
OLDNEW
« no previous file with comments | « printing/emf_win_unittest.cc ('k') | printing/image.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698