Home | History | Annotate | Download | only in gfx
      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
     10 PlatformFont* PlatformFont::CreateDefault() {
     11   return NULL;
     12 }
     13 
     14 // static
     15 PlatformFont* PlatformFont::CreateFromNativeFont(NativeFont native_font) {
     16   return NULL;
     17 }
     18 
     19 // static
     20 PlatformFont* PlatformFont::CreateFromNameAndSize(const std::string& font_name,
     21                                                   int font_size) {
     22   return NULL;
     23 }
     24 
     25 }  // namespace gfx
     26