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

Side by Side Diff: core/fxge/agg/fx_agg_driver.cpp

Issue 2350763002: Revert of Pdfium: Fix fonts leaking on ClosePage. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: Created 4 years, 3 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/agg/fx_agg_driver.h ('k') | core/fxge/apple/apple_int.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 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 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/agg/fx_agg_driver.h" 7 #include "core/fxge/agg/fx_agg_driver.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
11 #include "core/fxcodec/include/fx_codec.h" 11 #include "core/fxcodec/include/fx_codec.h"
12 #include "core/fxcrt/include/fx_memory.h" 12 #include "core/fxcrt/include/fx_memory.h"
13 #include "core/fxge/dib/dib_int.h" 13 #include "core/fxge/dib/dib_int.h"
14 #include "core/fxge/ge/cfx_cliprgn.h" 14 #include "core/fxge/ge/cfx_cliprgn.h"
15 #include "core/fxge/ge/fx_text_int.h" 15 #include "core/fxge/ge/fx_text_int.h"
16 #include "core/fxge/include/cfx_fontcache.h"
16 #include "core/fxge/include/cfx_fxgedevice.h" 17 #include "core/fxge/include/cfx_fxgedevice.h"
17 #include "core/fxge/include/cfx_gemodule.h" 18 #include "core/fxge/include/cfx_gemodule.h"
18 #include "core/fxge/include/cfx_graphstatedata.h" 19 #include "core/fxge/include/cfx_graphstatedata.h"
19 #include "core/fxge/include/cfx_pathdata.h" 20 #include "core/fxge/include/cfx_pathdata.h"
20 #include "core/fxge/include/cfx_renderdevice.h" 21 #include "core/fxge/include/cfx_renderdevice.h"
21 #include "core/fxge/include/ifx_renderdevicedriver.h" 22 #include "core/fxge/include/ifx_renderdevicedriver.h"
22 #include "third_party/agg23/agg_conv_dash.h" 23 #include "third_party/agg23/agg_conv_dash.h"
23 #include "third_party/agg23/agg_conv_stroke.h" 24 #include "third_party/agg23/agg_conv_stroke.h"
24 #include "third_party/agg23/agg_curves.h" 25 #include "third_party/agg23/agg_curves.h"
25 #include "third_party/agg23/agg_path_storage.h" 26 #include "third_party/agg23/agg_path_storage.h"
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 } 452 }
452 453
453 #if _FXM_PLATFORM_ != _FXM_PLATFORM_APPLE_ 454 #if _FXM_PLATFORM_ != _FXM_PLATFORM_APPLE_
454 void CFX_AggDeviceDriver::InitPlatform() {} 455 void CFX_AggDeviceDriver::InitPlatform() {}
455 456
456 void CFX_AggDeviceDriver::DestroyPlatform() {} 457 void CFX_AggDeviceDriver::DestroyPlatform() {}
457 458
458 FX_BOOL CFX_AggDeviceDriver::DrawDeviceText(int nChars, 459 FX_BOOL CFX_AggDeviceDriver::DrawDeviceText(int nChars,
459 const FXTEXT_CHARPOS* pCharPos, 460 const FXTEXT_CHARPOS* pCharPos,
460 CFX_Font* pFont, 461 CFX_Font* pFont,
462 CFX_FontCache* pCache,
461 const CFX_Matrix* pObject2Device, 463 const CFX_Matrix* pObject2Device,
462 FX_FLOAT font_size, 464 FX_FLOAT font_size,
463 uint32_t color) { 465 uint32_t color) {
464 return FALSE; 466 return FALSE;
465 } 467 }
466 #endif // _FXM_PLATFORM_ != _FXM_PLATFORM_APPLE_ 468 #endif // _FXM_PLATFORM_ != _FXM_PLATFORM_APPLE_
467 469
468 int CFX_AggDeviceDriver::GetDeviceCaps(int caps_id) const { 470 int CFX_AggDeviceDriver::GetDeviceCaps(int caps_id) const {
469 switch (caps_id) { 471 switch (caps_id) {
470 case FXDC_DEVICE_CLASS: 472 case FXDC_DEVICE_CLASS:
(...skipping 1288 matching lines...) Expand 10 before | Expand all | Expand 10 after
1759 WrapUnique(new CFX_AggDeviceDriver(pBitmap, FALSE, pOriDevice, FALSE))); 1761 WrapUnique(new CFX_AggDeviceDriver(pBitmap, FALSE, pOriDevice, FALSE)));
1760 return true; 1762 return true;
1761 } 1763 }
1762 1764
1763 CFX_FxgeDevice::~CFX_FxgeDevice() { 1765 CFX_FxgeDevice::~CFX_FxgeDevice() {
1764 if (m_bOwnedBitmap) { 1766 if (m_bOwnedBitmap) {
1765 delete GetBitmap(); 1767 delete GetBitmap();
1766 } 1768 }
1767 } 1769 }
1768 #endif 1770 #endif
OLDNEW
« no previous file with comments | « core/fxge/agg/fx_agg_driver.h ('k') | core/fxge/apple/apple_int.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698