crazy linker: Fix failure to cleanly unload libraries.
[chromium-blink-merge.git] / ui / gfx / platform_font_ozone.cc
blobaef042a0c93185ac97a704fa68c3a7278545f09e
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.
5 #include "ui/gfx/platform_font.h"
7 namespace gfx {
9 // static
10 PlatformFont* PlatformFont::CreateDefault() {
11 return NULL;
14 // static
15 PlatformFont* PlatformFont::CreateFromNativeFont(NativeFont native_font) {
16 return NULL;
19 // static
20 PlatformFont* PlatformFont::CreateFromNameAndSize(const std::string& font_name,
21 int font_size) {
22 return NULL;
25 } // namespace gfx