Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Side by Side Diff: ui/gfx/platform_font_android.cc

Issue 8497054: Upstream: ui implementation in Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: init Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW
« ui/gfx/native_theme_android.cc ('K') | « ui/gfx/native_theme_android.cc ('k') | ui/ui.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698