OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
| 5 #include <stdint.h> |
| 6 |
5 #include "SkTypeface.h" | 7 #include "SkTypeface.h" |
6 | 8 |
7 // ===== Begin Chrome-specific definitions ===== | 9 // ===== Begin Chrome-specific definitions ===== |
8 | 10 |
9 uint32_t SkTypeface::UniqueID(const SkTypeface* face) | 11 uint32_t SkTypeface::UniqueID(const SkTypeface* face) |
10 { | 12 { |
11 return 0; | 13 return 0; |
12 } | 14 } |
13 | 15 |
14 void SkTypeface::serialize(SkWStream* stream) const { | 16 void SkTypeface::serialize(SkWStream* stream) const { |
15 } | 17 } |
16 | 18 |
17 SkTypeface* SkTypeface::Deserialize(SkStream* stream) { | 19 SkTypeface* SkTypeface::Deserialize(SkStream* stream) { |
18 return NULL; | 20 return NULL; |
19 } | 21 } |
20 | 22 |
21 // ===== End Chrome-specific definitions ===== | 23 // ===== End Chrome-specific definitions ===== |
OLD | NEW |