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

Side by Side Diff: printing/units.h

Issue 7348010: Added Header and Footer support using Skia (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Refactored JS code Created 9 years, 4 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
OLDNEW
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 PRINTING_UNITS_H_ 5 #ifndef PRINTING_UNITS_H_
6 #define PRINTING_UNITS_H_ 6 #define PRINTING_UNITS_H_
7 7
8 namespace printing { 8 namespace printing {
9 9
10 // Length of a thousanth of inches in 0.01mm unit. 10 // Length of a thousanth of inches in 0.01mm unit.
(...skipping 18 matching lines...) Expand all
29 29
30 // Converts from 0.00001 meter unit to 0.001 inch. 30 // Converts from 0.00001 meter unit to 0.001 inch.
31 int ConvertHundredThousanthMeterToMilliInch(int cmm); 31 int ConvertHundredThousanthMeterToMilliInch(int cmm);
32 32
33 // Converts from 1 pixel to 1 point using integers. 33 // Converts from 1 pixel to 1 point using integers.
34 int ConvertPixelsToPoint(int pixels); 34 int ConvertPixelsToPoint(int pixels);
35 35
36 // Converts from 1 pixel to 1 point using doubles. 36 // Converts from 1 pixel to 1 point using doubles.
37 double ConvertPixelsToPointDouble(double pixels); 37 double ConvertPixelsToPointDouble(double pixels);
38 38
39 // Converts from 1 point to 1 pixel using doubles.
40 double ConvertPointsToPixelDouble(double points);
41
42 // Splits the horizontal width equally into segments with an interstice
43 // between each segment. Returns the width of a segment.
44 double GetSegmentWidth(double page_width);
vandebo (ex-Chrome) 2011/08/15 19:35:49 The name of this could be improved in this file...
Aayush Kumar 2011/08/15 21:37:37 Done.
45
39 } // namespace printing 46 } // namespace printing
40 47
41 #endif // PRINTING_UNITS_H_ 48 #endif // PRINTING_UNITS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698