| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2008 The Android Open Source Project | 3 * Copyright 2008 The Android Open Source Project |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 #include "SkFontHost.h" | 10 #include "SkFontHost.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 return NULL; | 22 return NULL; |
| 23 } | 23 } |
| 24 | 24 |
| 25 SkTypeface* SkFontHost::CreateTypefaceFromFile(char const*) { | 25 SkTypeface* SkFontHost::CreateTypefaceFromFile(char const*) { |
| 26 SkDEBUGFAIL("SkFontHost::CreateTypefaceFromFile unimplemented"); | 26 SkDEBUGFAIL("SkFontHost::CreateTypefaceFromFile unimplemented"); |
| 27 return NULL; | 27 return NULL; |
| 28 } | 28 } |
| 29 | 29 |
| 30 /////////////////////////////////////////////////////////////////////////////// | 30 /////////////////////////////////////////////////////////////////////////////// |
| 31 | 31 |
| 32 SkStream* SkFontHost::OpenStream(uint32_t uniqueID) { | |
| 33 SkDEBUGFAIL("SkFontHost::OpenStream unimplemented"); | |
| 34 return NULL; | |
| 35 } | |
| 36 | |
| 37 /////////////////////////////////////////////////////////////////////////////// | |
| 38 | |
| 39 void SkFontHost::Serialize(const SkTypeface* face, SkWStream* stream) { | 32 void SkFontHost::Serialize(const SkTypeface* face, SkWStream* stream) { |
| 40 SkDEBUGFAIL("SkFontHost::Serialize unimplemented"); | 33 SkDEBUGFAIL("SkFontHost::Serialize unimplemented"); |
| 41 } | 34 } |
| 42 | 35 |
| 43 SkTypeface* SkFontHost::Deserialize(SkStream* stream) { | 36 SkTypeface* SkFontHost::Deserialize(SkStream* stream) { |
| 44 SkDEBUGFAIL("SkFontHost::Deserialize unimplemented"); | 37 SkDEBUGFAIL("SkFontHost::Deserialize unimplemented"); |
| 45 return NULL; | 38 return NULL; |
| 46 } | 39 } |
| 47 | 40 |
| 48 /////////////////////////////////////////////////////////////////////////////// | 41 /////////////////////////////////////////////////////////////////////////////// |
| 49 | 42 |
| 50 SkTypeface* SkFontHost::NextLogicalTypeface(SkFontID currFontID, | 43 SkTypeface* SkFontHost::NextLogicalTypeface(SkFontID currFontID, |
| 51 SkFontID origFontID) { | 44 SkFontID origFontID) { |
| 52 return NULL; | 45 return NULL; |
| 53 } | 46 } |
| OLD | NEW |