1 // Copyright (c) 2013 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 "ui/gfx/platform_font.h" 6 7 namespace gfx { 8 9 // static CreateDefault()10PlatformFont* PlatformFont::CreateDefault() { 11 return NULL; 12 } 13 14 // static CreateFromNativeFont(NativeFont native_font)15PlatformFont* PlatformFont::CreateFromNativeFont(NativeFont native_font) { 16 return NULL; 17 } 18 19 // static CreateFromNameAndSize(const std::string & font_name,int font_size)20PlatformFont* PlatformFont::CreateFromNameAndSize(const std::string& font_name, 21 int font_size) { 22 return NULL; 23 } 24 25 } // namespace gfx 26