OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Brent Fulgham | 2 * Copyright (C) 2011 Brent Fulgham |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 | 339 |
340 const size_t tableSize = m_typeface->getTableSize(tag); | 340 const size_t tableSize = m_typeface->getTableSize(tag); |
341 if (tableSize) { | 341 if (tableSize) { |
342 Vector<char> tableBuffer(tableSize); | 342 Vector<char> tableBuffer(tableSize); |
343 m_typeface->getTableData(tag, 0, tableSize, &tableBuffer[0]); | 343 m_typeface->getTableData(tag, 0, tableSize, &tableBuffer[0]); |
344 buffer = SharedBuffer::adoptVector(tableBuffer); | 344 buffer = SharedBuffer::adoptVector(tableBuffer); |
345 } | 345 } |
346 return buffer.release(); | 346 return buffer.release(); |
347 } | 347 } |
348 | 348 |
| 349 void FontPlatformData::purgeMemory() |
| 350 { |
| 351 m_harfBuzzFace = nullptr; |
| 352 } |
| 353 |
349 } // namespace blink | 354 } // namespace blink |
OLD | NEW |