| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2008 The Android Open Source Project | 2 * Copyright 2008 The Android Open Source Project |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkFontMgr.h" | 8 #include "SkFontMgr.h" |
| 9 | 9 |
| 10 SkFontMgr* SkFontMgr::Factory() { | 10 SkFontMgr* SkFontMgr::Factory() { |
| 11 // Always return NULL, an empty SkFontMgr will be used. | 11 // Always return nullptr, an empty SkFontMgr will be used. |
| 12 return NULL; | 12 return nullptr; |
| 13 } | 13 } |
| OLD | NEW |