diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-09-26 10:52:53 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-09-26 15:24:34 +0000 |
commit | 15dffdf6bd8d595193cfb072974a8efeb8052a91 (patch) | |
tree | 6f29c7c7eb78f6d1453a86ed643f2d1e41533f2b /core/fxge/fx_text_int.h | |
parent | 1a43b3064dc38a55de4b1d727237806578bb3ef9 (diff) | |
download | pdfium-15dffdf6bd8d595193cfb072974a8efeb8052a91.tar.xz |
Remove fx_text_int.h
The CFX_SizeGlyphCache is only used internally by the CFX_FaceCache.
This CL moves the definition to that file and removes fx_text_int.h
Change-Id: I38f26f437f0eaa72492995ae7442d5c38ed2f229
Reviewed-on: https://pdfium-review.googlesource.com/14771
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxge/fx_text_int.h')
-rw-r--r-- | core/fxge/fx_text_int.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/core/fxge/fx_text_int.h b/core/fxge/fx_text_int.h deleted file mode 100644 index da594443cc..0000000000 --- a/core/fxge/fx_text_int.h +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright 2014 PDFium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com - -#ifndef CORE_FXGE_FX_TEXT_INT_H_ -#define CORE_FXGE_FX_TEXT_INT_H_ - -#include <map> -#include <memory> - -#include "core/fxge/fx_font.h" -#include "core/fxge/fx_freetype.h" - -class CFX_SizeGlyphCache { - public: - CFX_SizeGlyphCache(); - ~CFX_SizeGlyphCache(); - - std::map<uint32_t, std::unique_ptr<CFX_GlyphBitmap>> m_GlyphMap; -}; - -#endif // CORE_FXGE_FX_TEXT_INT_H_ |