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

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

Issue 2377393002: Move core/fxge/include to core/fxge (Closed)
Patch Set: Rebase to master Created 4 years, 2 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/ifx_renderdevicedriver.h ('k') | core/fxge/ifx_systemfontinfo.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/ifx_renderdevicedriver.h"
8 8
9 #include "core/fxcrt/fx_coordinates.h" 9 #include "core/fxcrt/fx_coordinates.h"
10 #include "core/fxge/include/cfx_pathdata.h" 10 #include "core/fxge/cfx_pathdata.h"
11 #include "core/fxge/include/cfx_renderdevice.h" 11 #include "core/fxge/cfx_renderdevice.h"
12 12
13 IFX_RenderDeviceDriver::~IFX_RenderDeviceDriver() {} 13 IFX_RenderDeviceDriver::~IFX_RenderDeviceDriver() {}
14 14
15 CFX_Matrix IFX_RenderDeviceDriver::GetCTM() const { 15 CFX_Matrix IFX_RenderDeviceDriver::GetCTM() const {
16 return CFX_Matrix(); 16 return CFX_Matrix();
17 } 17 }
18 18
19 FX_BOOL IFX_RenderDeviceDriver::StartRendering() { 19 FX_BOOL IFX_RenderDeviceDriver::StartRendering() {
20 return TRUE; 20 return TRUE;
21 } 21 }
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 } 93 }
94 94
95 bool IFX_RenderDeviceDriver::SetBitsWithMask(const CFX_DIBSource* pBitmap, 95 bool IFX_RenderDeviceDriver::SetBitsWithMask(const CFX_DIBSource* pBitmap,
96 const CFX_DIBSource* pMask, 96 const CFX_DIBSource* pMask,
97 int left, 97 int left,
98 int top, 98 int top,
99 int bitmap_alpha, 99 int bitmap_alpha,
100 int blend_type) { 100 int blend_type) {
101 return false; 101 return false;
102 } 102 }
OLDNEW
« no previous file with comments | « core/fxge/ifx_renderdevicedriver.h ('k') | core/fxge/ifx_systemfontinfo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698