| OLD | NEW |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 1 #include "SkTypeface.h" | 5 #include "SkTypeface.h" |
| 2 | 6 |
| 3 // ===== Begin Chrome-specific definitions ===== | 7 // ===== Begin Chrome-specific definitions ===== |
| 4 | 8 |
| 5 uint32_t SkTypeface::UniqueID(const SkTypeface* face) | 9 uint32_t SkTypeface::UniqueID(const SkTypeface* face) |
| 6 { | 10 { |
| 7 return 0; | 11 return 0; |
| 8 } | 12 } |
| 9 | 13 |
| 10 void SkTypeface::serialize(SkWStream* stream) const { | 14 void SkTypeface::serialize(SkWStream* stream) const { |
| 11 } | 15 } |
| 12 | 16 |
| 13 SkTypeface* SkTypeface::Deserialize(SkStream* stream) { | 17 SkTypeface* SkTypeface::Deserialize(SkStream* stream) { |
| 14 return NULL; | 18 return NULL; |
| 15 } | 19 } |
| 16 | 20 |
| 17 // ===== End Chrome-specific definitions ===== | 21 // ===== End Chrome-specific definitions ===== |
| OLD | NEW |