Home | History | Annotate | Download | only in ext
      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 
      5 #include "SkTypeface.h"
      6 
      7 // ===== Begin Chrome-specific definitions =====
      8 
      9 uint32_t SkTypeface::UniqueID(const SkTypeface* face)
     10 {
     11     return 0;
     12 }
     13 
     14 void SkTypeface::serialize(SkWStream* stream) const {
     15 }
     16 
     17 SkTypeface* SkTypeface::Deserialize(SkStream* stream) {
     18   return NULL;
     19 }
     20 
     21 // ===== End Chrome-specific definitions =====
     22