| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 CHROME_BROWSER_PRINTING_PRINTED_PAGE_H__ | 5 #ifndef PRINTING_PRINTED_PAGE_H_ |
| 6 #define CHROME_BROWSER_PRINTING_PRINTED_PAGE_H__ | 6 #define PRINTING_PRINTED_PAGE_H_ |
| 7 | 7 |
| 8 #include "base/gfx/rect.h" | 8 #include "base/gfx/rect.h" |
| 9 #include "base/gfx/size.h" | 9 #include "base/gfx/size.h" |
| 10 #include "base/ref_counted.h" | 10 #include "base/ref_counted.h" |
| 11 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
| 12 #include "printing/native_metafile.h" | 12 #include "printing/native_metafile.h" |
| 13 | 13 |
| 14 namespace printing { | 14 namespace printing { |
| 15 | 15 |
| 16 // Contains the data to reproduce a printed page, either on screen or on | 16 // Contains the data to reproduce a printed page, either on screen or on |
| (...skipping 23 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 // The physical page size. To support multiple page formats inside on print | 41 // The physical page size. To support multiple page formats inside on print |
| 42 // job. | 42 // job. |
| 43 const gfx::Size page_size_; | 43 const gfx::Size page_size_; |
| 44 | 44 |
| 45 DISALLOW_EVIL_CONSTRUCTORS(PrintedPage); | 45 DISALLOW_EVIL_CONSTRUCTORS(PrintedPage); |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 } // namespace printing | 48 } // namespace printing |
| 49 | 49 |
| 50 #endif // CHROME_BROWSER_PRINTING_PRINTED_PAGE_H__ | 50 #endif // PRINTING_PRINTED_PAGE_H_ |
| OLD | NEW |