summaryrefslogtreecommitdiffstats
path: root/skia/sgl/SkTypeface_fake.cpp
blob: 6aaf3b01f297f90b1bed5d22c75c16a5c6a66632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "SkTypeface.h"

// ===== Begin Chrome-specific definitions =====

uint32_t SkTypeface::UniqueID(const SkTypeface* face)
{
    return 0;
}

void SkTypeface::serialize(SkWStream* stream) const {
}

SkTypeface* SkTypeface::Deserialize(SkStream* stream) {
  return NULL;
}

// ===== End Chrome-specific definitions =====