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

Side by Side Diff: printing/pdf_render_settings.h

Issue 8174015: Fixing build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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_PDF_RENDER_SETTINGS_H_ 5 #ifndef PRINTING_PDF_RENDER_SETTINGS_H_
6 #define PRINTING_PDF_RENDER_SETTINGS_H_ 6 #define PRINTING_PDF_RENDER_SETTINGS_H_
7 7
8 #include "base/tuple.h" 8 #include "base/tuple.h"
9 #include "ipc/ipc_param_traits.h" 9 #include "ipc/ipc_param_traits.h"
10 #include "printing/printing_export.h" 10 #include "printing/printing_export.h"
(...skipping 17 matching lines...) Expand all
28 const gfx::Rect& area() const { return a; } 28 const gfx::Rect& area() const { return a; }
29 int dpi() const { return b; } 29 int dpi() const { return b; }
30 bool autorotate() const { return c; } 30 bool autorotate() const { return c; }
31 }; 31 };
32 32
33 } // namespace printing 33 } // namespace printing
34 34
35 namespace IPC { 35 namespace IPC {
36 template <> 36 template <>
37 struct SimilarTypeTraits<printing::PdfRenderSettings> { 37 struct SimilarTypeTraits<printing::PdfRenderSettings> {
38 typedefprinting::PdfRenderSettingsBase Type; 38 typedef printing::PdfRenderSettingsBase Type;
39 }; 39 };
40 40
41 } // namespace IPC 41 } // namespace IPC
42 42
43 #endif // PRINTING_PDF_RENDER_SETTINGS_H_ 43 #endif // PRINTING_PDF_RENDER_SETTINGS_H_
44 44
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698