summaryrefslogtreecommitdiffstats
path: root/ui/gfx/render_text_linux.cc
diff options
context:
space:
mode:
authormsw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-25 05:45:36 +0000
committermsw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-25 05:45:36 +0000
commit1a048518abc4766f489068a3a833963d6a98f5c3 (patch)
tree3bd2acf2d73b46c7f3935119ca3451e19ff1e224 /ui/gfx/render_text_linux.cc
parentf077210dfebac7d8355038dc5c2dbeb81f692017 (diff)
downloadchromium_src-1a048518abc4766f489068a3a833963d6a98f5c3.zip
chromium_src-1a048518abc4766f489068a3a833963d6a98f5c3.tar.gz
chromium_src-1a048518abc4766f489068a3a833963d6a98f5c3.tar.bz2
Revert 93840 - Add gfx::RenderText and support code.
RenderText is NativeTextFieldViews' interface to platform-specific text rendering engines. This change doesn't hook in any new Pango or Uniscribe functionality, it will just setup the necessary API. Review URL: http://codereview.chromium.org/7265011 TBR=msw@chromium.org Review URL: http://codereview.chromium.org/7492041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93842 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/render_text_linux.cc')
-rwxr-xr-xui/gfx/render_text_linux.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/ui/gfx/render_text_linux.cc b/ui/gfx/render_text_linux.cc
deleted file mode 100755
index 21b3ac4..0000000
--- a/ui/gfx/render_text_linux.cc
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright (c) 2011 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/render_text_linux.h"
-
-namespace gfx {
-
-RenderTextLinux::RenderTextLinux()
- : RenderText() {
-}
-
-RenderTextLinux::~RenderTextLinux() {
-}
-
-RenderText* RenderText::CreateRenderText() {
- return new RenderTextLinux;
-}
-
-} // namespace gfx