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

Side by Side Diff: icu46/source/test/letest/FontTableCache.h

Issue 5516007: Check in the pristine copy of ICU 4.6... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years 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 | « icu46/source/test/letest/FontObject.cpp ('k') | icu46/source/test/letest/FontTableCache.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /*
2 **********************************************************************
3 * Copyright (C) 2003-2008, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
6 */
7
8 #ifndef __FONTTABLECACHE_H
9
10 #define __FONTTABLECACHE_H
11
12 #include "layout/LETypes.h"
13
14 U_NAMESPACE_USE
15
16 struct FontTableCacheEntry;
17
18 class FontTableCache
19 {
20 public:
21 FontTableCache();
22
23 virtual ~FontTableCache();
24
25 const void *find(LETag tableTag) const;
26
27 protected:
28 virtual const void *readFontTable(LETag tableTag) const = 0;
29 virtual void freeFontTable(const void *table) const;
30
31 private:
32
33 void add(LETag tableTag, const void *table);
34
35 FontTableCacheEntry *fTableCache;
36 le_int32 fTableCacheCurr;
37 le_int32 fTableCacheSize;
38 };
39
40 #endif
41
OLDNEW
« no previous file with comments | « icu46/source/test/letest/FontObject.cpp ('k') | icu46/source/test/letest/FontTableCache.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698