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

Side by Side Diff: core/fxge/ifx_renderdevicedriver.cpp

Issue 2246223002: Refactor fx_font part 1 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: CFX_AutoFontCache to own class, fixes Created 4 years, 4 months 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
« no previous file with comments | « core/fxge/ge/fx_ge_text.cpp ('k') | core/fxge/include/cfx_autofontcache.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #include "core/fxge/include/ifx_renderdevicedriver.h" 7 #include "core/fxge/include/ifx_renderdevicedriver.h"
8 8
9 #include "core/fxcrt/include/fx_coordinates.h" 9 #include "core/fxcrt/include/fx_coordinates.h"
10 #include "core/fxge/include/cfx_pathdata.h" 10 #include "core/fxge/include/cfx_pathdata.h"
11 #include "core/fxge/include/cfx_renderdevice.h" 11 #include "core/fxge/include/cfx_renderdevice.h"
12 12
13 class CFX_FontCache;
14
13 IFX_RenderDeviceDriver::~IFX_RenderDeviceDriver() {} 15 IFX_RenderDeviceDriver::~IFX_RenderDeviceDriver() {}
14 16
15 CFX_Matrix IFX_RenderDeviceDriver::GetCTM() const { 17 CFX_Matrix IFX_RenderDeviceDriver::GetCTM() const {
16 return CFX_Matrix(); 18 return CFX_Matrix();
17 } 19 }
18 20
19 FX_BOOL IFX_RenderDeviceDriver::StartRendering() { 21 FX_BOOL IFX_RenderDeviceDriver::StartRendering() {
20 return TRUE; 22 return TRUE;
21 } 23 }
22 24
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 } 96 }
95 97
96 bool IFX_RenderDeviceDriver::SetBitsWithMask(const CFX_DIBSource* pBitmap, 98 bool IFX_RenderDeviceDriver::SetBitsWithMask(const CFX_DIBSource* pBitmap,
97 const CFX_DIBSource* pMask, 99 const CFX_DIBSource* pMask,
98 int left, 100 int left,
99 int top, 101 int top,
100 int bitmap_alpha, 102 int bitmap_alpha,
101 int blend_type) { 103 int blend_type) {
102 return false; 104 return false;
103 } 105 }
OLDNEW
« no previous file with comments | « core/fxge/ge/fx_ge_text.cpp ('k') | core/fxge/include/cfx_autofontcache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698