diff options
author | derat <derat@chromium.org> | 2015-02-11 16:10:41 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-12 00:11:28 +0000 |
commit | cd2d6fbd501376345db3964e9a5d89047ae2842d (patch) | |
tree | 9a8a779b822dadb3688452a996a0999d584edbea /ui/gfx/platform_font_ozone.cc | |
parent | c161f20c53d160be364a1909ca85a28eee7b7399 (diff) | |
download | chromium_src-cd2d6fbd501376345db3964e9a5d89047ae2842d.zip chromium_src-cd2d6fbd501376345db3964e9a5d89047ae2842d.tar.gz chromium_src-cd2d6fbd501376345db3964e9a5d89047ae2842d.tar.bz2 |
Rename PlatformFontPango to PlatformFontLinux.
The Linux PlatformFont implementation no longer has any
dependencies on Pango. Rename it and compile it
unconditionally on Linux. Also drop some Pango build
dependencies and delete the now-unneeded PlatformFontOzone
implementation.
BUG=398885,393067
TBR=sky@chromium.org
Review URL: https://codereview.chromium.org/912293006
Cr-Commit-Position: refs/heads/master@{#315874}
Diffstat (limited to 'ui/gfx/platform_font_ozone.cc')
-rw-r--r-- | ui/gfx/platform_font_ozone.cc | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/ui/gfx/platform_font_ozone.cc b/ui/gfx/platform_font_ozone.cc deleted file mode 100644 index b1a463c..0000000 --- a/ui/gfx/platform_font_ozone.cc +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (c) 2013 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "ui/gfx/platform_font.h" - -namespace gfx { - -// static -PlatformFont* PlatformFont::CreateDefault() { - return NULL; -} - -// static -PlatformFont* PlatformFont::CreateFromNameAndSize(const std::string& font_name, - int font_size) { - return NULL; -} - -} // namespace gfx |