| OLD | NEW |
| 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_EMF_WIN_H_ | 5 #ifndef PRINTING_EMF_WIN_H_ |
| 6 #define PRINTING_EMF_WIN_H_ | 6 #define PRINTING_EMF_WIN_H_ |
| 7 | 7 |
| 8 #include <windows.h> | 8 #include <windows.h> |
| 9 #include <stddef.h> |
| 10 #include <stdint.h> |
| 9 | 11 |
| 10 #include <vector> | 12 #include <vector> |
| 11 | 13 |
| 12 #include "base/basictypes.h" | |
| 13 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 14 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 16 #include "base/macros.h" |
| 15 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
| 16 #include "printing/metafile.h" | 18 #include "printing/metafile.h" |
| 17 | 19 |
| 18 namespace base { | 20 namespace base { |
| 19 class FilePath; | 21 class FilePath; |
| 20 } | 22 } |
| 21 | 23 |
| 22 namespace gfx { | 24 namespace gfx { |
| 23 class Rect; | 25 class Rect; |
| 24 class Size; | 26 class Size; |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 std::vector<Record> items_; | 185 std::vector<Record> items_; |
| 184 | 186 |
| 185 EnumerationContext context_; | 187 EnumerationContext context_; |
| 186 | 188 |
| 187 DISALLOW_COPY_AND_ASSIGN(Enumerator); | 189 DISALLOW_COPY_AND_ASSIGN(Enumerator); |
| 188 }; | 190 }; |
| 189 | 191 |
| 190 } // namespace printing | 192 } // namespace printing |
| 191 | 193 |
| 192 #endif // PRINTING_EMF_WIN_H_ | 194 #endif // PRINTING_EMF_WIN_H_ |
| OLD | NEW |