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

Side by Side Diff: xfa/src/fxbarcode/BC_Writer.cpp

Issue 1377853004: XFA: Remove test for new. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: nit Created 5 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 | « xfa/src/fgas/src/font/fx_stdfontmgr.cpp ('k') | xfa/src/fxfa/src/app/xfa_ffapp.cpp » ('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 "barcode.h" 7 #include "barcode.h"
8 #include "BC_Writer.h" 8 #include "BC_Writer.h"
9 CBC_Writer::CBC_Writer() { 9 CBC_Writer::CBC_Writer() {
10 m_CharEncoding = 0; 10 m_CharEncoding = 0;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 m_Width = width; 43 m_Width = width;
44 return TRUE; 44 return TRUE;
45 } 45 }
46 void CBC_Writer::SetBackgroundColor(FX_ARGB backgroundColor) { 46 void CBC_Writer::SetBackgroundColor(FX_ARGB backgroundColor) {
47 m_backgroundColor = backgroundColor; 47 m_backgroundColor = backgroundColor;
48 } 48 }
49 void CBC_Writer::SetBarcodeColor(FX_ARGB foregroundColor) { 49 void CBC_Writer::SetBarcodeColor(FX_ARGB foregroundColor) {
50 m_barColor = foregroundColor; 50 m_barColor = foregroundColor;
51 } 51 }
52 CFX_DIBitmap* CBC_Writer::CreateDIBitmap(int32_t width, int32_t height) { 52 CFX_DIBitmap* CBC_Writer::CreateDIBitmap(int32_t width, int32_t height) {
53 CFX_DIBitmap* pDIBitmap = NULL; 53 CFX_DIBitmap* pDIBitmap = new CFX_DIBitmap;
54 pDIBitmap = new CFX_DIBitmap; 54 pDIBitmap->Create(width, height, m_colorSpace);
55 if (pDIBitmap != NULL) {
56 pDIBitmap->Create(width, height, m_colorSpace);
57 }
58 return pDIBitmap; 55 return pDIBitmap;
59 } 56 }
OLDNEW
« no previous file with comments | « xfa/src/fgas/src/font/fx_stdfontmgr.cpp ('k') | xfa/src/fxfa/src/app/xfa_ffapp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698