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

Side by Side Diff: source/test/letest/SimpleFontInstance.h

Issue 1621843002: ICU 56 update step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@561
Patch Set: Created 4 years, 11 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
« no previous file with comments | « source/test/letest/PortableFontInstance.cpp ('k') | source/test/letest/SimpleFontInstance.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ******************************************************************************* 2 *******************************************************************************
3 * 3 *
4 * Copyright (C) 1999-2007, International Business Machines 4 * Copyright (C) 1999-2015, International Business Machines
5 * Corporation and others. All Rights Reserved. 5 * Corporation and others. All Rights Reserved.
6 * 6 *
7 ******************************************************************************* 7 *******************************************************************************
8 * file name: SimpleFontInstance.h 8 * file name: SimpleFontInstance.h
9 * 9 *
10 * created on: 03/30/2006 10 * created on: 03/30/2006
11 * created by: Eric R. Mader 11 * created by: Eric R. Mader
12 */ 12 */
13 13
14 #ifndef __SIMPLEFONTINSTANCE_H 14 #ifndef __SIMPLEFONTINSTANCE_H
(...skipping 12 matching lines...) Expand all
27 le_int32 fDescent; 27 le_int32 fDescent;
28 28
29 protected: 29 protected:
30 const void *readFontTable(LETag tableTag) const; 30 const void *readFontTable(LETag tableTag) const;
31 31
32 public: 32 public:
33 SimpleFontInstance(float pointSize, LEErrorCode &status); 33 SimpleFontInstance(float pointSize, LEErrorCode &status);
34 34
35 virtual ~SimpleFontInstance(); 35 virtual ~SimpleFontInstance();
36 36
37 virtual const void *getFontTable(LETag tableTag) const; 37 virtual const void *getFontTable(LETag tableTag, size_t &length) const;
38 38
39 virtual le_int32 getUnitsPerEM() const; 39 virtual le_int32 getUnitsPerEM() const;
40 40
41 virtual le_int32 getAscent() const; 41 virtual le_int32 getAscent() const;
42 42
43 virtual le_int32 getDescent() const; 43 virtual le_int32 getDescent() const;
44 44
45 virtual le_int32 getLeading() const; 45 virtual le_int32 getLeading() const;
46 46
47 // We really want to inherit this method from the superclass, but some compi lers 47 // We really want to inherit this method from the superclass, but some compi lers
(...skipping 14 matching lines...) Expand all
62 62
63 float getYPixelsPerEm() const; 63 float getYPixelsPerEm() const;
64 64
65 float getScaleFactorX() const; 65 float getScaleFactorX() const;
66 66
67 float getScaleFactorY() const; 67 float getScaleFactorY() const;
68 68
69 }; 69 };
70 70
71 #endif 71 #endif
OLDNEW
« no previous file with comments | « source/test/letest/PortableFontInstance.cpp ('k') | source/test/letest/SimpleFontInstance.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698