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

Side by Side Diff: source/test/letest/PortableFontInstance.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/Makefile.in ('k') | source/test/letest/PortableFontInstance.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 * 4 *
5 * Copyright (C) 1999-2013, International Business Machines 5 * Copyright (C) 1999-2015, International Business Machines
6 * Corporation and others. All Rights Reserved. 6 * Corporation and others. All Rights Reserved.
7 * 7 *
8 ******************************************************************************* 8 *******************************************************************************
9 * file name: PortableFontInstance.h 9 * file name: PortableFontInstance.h
10 * 10 *
11 * created on: 11/12/1999 11 * created on: 11/12/1999
12 * created by: Eric R. Mader 12 * created by: Eric R. Mader
13 */ 13 */
14 14
15 #ifndef __PORTABLEFONTINSTANCE_H 15 #ifndef __PORTABLEFONTINSTANCE_H
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 protected: 65 protected:
66 const void *readFontTable(LETag tableTag) const { size_t ignored; return rea dFontTable(tableTag, ignored); } 66 const void *readFontTable(LETag tableTag) const { size_t ignored; return rea dFontTable(tableTag, ignored); }
67 const void *readFontTable(LETag tableTag, size_t &length) const; 67 const void *readFontTable(LETag tableTag, size_t &length) const;
68 68
69 public: 69 public:
70 PortableFontInstance(const char *fileName, float pointSize, LEErrorCode &sta tus); 70 PortableFontInstance(const char *fileName, float pointSize, LEErrorCode &sta tus);
71 71
72 virtual ~PortableFontInstance(); 72 virtual ~PortableFontInstance();
73 73
74 virtual const void *getFontTable(LETag tableTag) const;
75 virtual const void *getFontTable(LETag tableTag, size_t &length) const; 74 virtual const void *getFontTable(LETag tableTag, size_t &length) const;
76 75
77 virtual const char *getNameString(le_uint16 nameID, le_uint16 platform, le_u int16 encoding, le_uint16 language) const; 76 virtual const char *getNameString(le_uint16 nameID, le_uint16 platform, le_u int16 encoding, le_uint16 language) const;
78 77
79 virtual const LEUnicode16 *getUnicodeNameString(le_uint16 nameID, le_uint16 platform, le_uint16 encoding, le_uint16 language) const; 78 virtual const LEUnicode16 *getUnicodeNameString(le_uint16 nameID, le_uint16 platform, le_uint16 encoding, le_uint16 language) const;
80 79
81 virtual void deleteNameString(const char *name) const; 80 virtual void deleteNameString(const char *name) const;
82 81
83 virtual void deleteNameString(const LEUnicode16 *name) const; 82 virtual void deleteNameString(const LEUnicode16 *name) const;
84 83
(...skipping 27 matching lines...) Expand all
112 111
113 float getYPixelsPerEm() const; 112 float getYPixelsPerEm() const;
114 113
115 float getScaleFactorX() const; 114 float getScaleFactorX() const;
116 115
117 float getScaleFactorY() const; 116 float getScaleFactorY() const;
118 117
119 }; 118 };
120 119
121 #endif 120 #endif
OLDNEW
« no previous file with comments | « source/test/letest/Makefile.in ('k') | source/test/letest/PortableFontInstance.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698