Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(365)

Side by Side Diff: skia/ext/SkTypeface_fake.cpp

Issue 1540963004: Switch to standard integer types in skia/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missed some Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 =====
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698