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

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

Issue 1679743003: CPDF_TextStream::m_pObjArray is always NULL (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rename Created 4 years, 10 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
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/src/fxge/agg/include/fx_agg_driver.h" 7 #include "core/src/fxge/agg/include/fx_agg_driver.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
11 #include "core/include/fxcodec/fx_codec.h" 11 #include "core/include/fxcodec/fx_codec.h"
12 #include "core/include/fxge/fx_ge.h" 12 #include "core/include/fxge/fx_ge.h"
13 #include "core/src/fxge/dib/dib_int.h" 13 #include "core/src/fxge/dib/dib_int.h"
14 #include "core/src/fxge/ge/text_int.h" 14 #include "core/src/fxge/ge/fx_text_int.h"
15 #include "third_party/agg23/agg_conv_dash.h" 15 #include "third_party/agg23/agg_conv_dash.h"
16 #include "third_party/agg23/agg_conv_stroke.h" 16 #include "third_party/agg23/agg_conv_stroke.h"
17 #include "third_party/agg23/agg_curves.h" 17 #include "third_party/agg23/agg_curves.h"
18 #include "third_party/agg23/agg_path_storage.h" 18 #include "third_party/agg23/agg_path_storage.h"
19 #include "third_party/agg23/agg_pixfmt_gray.h" 19 #include "third_party/agg23/agg_pixfmt_gray.h"
20 #include "third_party/agg23/agg_rasterizer_scanline_aa.h" 20 #include "third_party/agg23/agg_rasterizer_scanline_aa.h"
21 #include "third_party/agg23/agg_renderer_scanline.h" 21 #include "third_party/agg23/agg_renderer_scanline.h"
22 #include "third_party/agg23/agg_scanline_u.h" 22 #include "third_party/agg23/agg_scanline_u.h"
23 23
24 namespace { 24 namespace {
(...skipping 1761 matching lines...) Expand 10 before | Expand all | Expand 10 after
1786 IFX_RenderDeviceDriver* pDriver = 1786 IFX_RenderDeviceDriver* pDriver =
1787 new CFX_AggDeviceDriver(pBitmap, dither_bits, FALSE, pOriDevice, FALSE); 1787 new CFX_AggDeviceDriver(pBitmap, dither_bits, FALSE, pOriDevice, FALSE);
1788 SetDeviceDriver(pDriver); 1788 SetDeviceDriver(pDriver);
1789 return TRUE; 1789 return TRUE;
1790 } 1790 }
1791 CFX_FxgeDevice::~CFX_FxgeDevice() { 1791 CFX_FxgeDevice::~CFX_FxgeDevice() {
1792 if (m_bOwnedBitmap) { 1792 if (m_bOwnedBitmap) {
1793 delete GetBitmap(); 1793 delete GetBitmap();
1794 } 1794 }
1795 } 1795 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698