OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 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 "base/logging.h" | |
6 #include "ui/gfx/platform_font.h" | |
sky
2011/11/10 00:41:01
platform_font should be the first include.
michaelbai
2011/11/10 22:51:36
Done.
| |
7 | |
8 namespace gfx { | |
9 | |
10 // static | |
11 PlatformFont* PlatformFont::CreateDefault() { | |
12 NOTIMPLEMENTED(); | |
13 return NULL; | |
14 } | |
15 | |
16 // static | |
17 PlatformFont* PlatformFont::CreateFromFont(const Font& other) { | |
18 NOTIMPLEMENTED(); | |
19 return NULL; | |
20 } | |
21 | |
22 // static | |
23 PlatformFont* PlatformFont::CreateFromNativeFont(NativeFont native_font) { | |
24 NOTIMPLEMENTED(); | |
25 return NULL; | |
26 } | |
27 | |
28 // static | |
29 PlatformFont* PlatformFont::CreateFromNameAndSize(const string16& font_name, | |
30 int font_size) { | |
31 NOTIMPLEMENTED(); | |
32 return NULL; | |
33 } | |
34 | |
35 } // namespace gfx | |
OLD | NEW |