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

Side by Side Diff: core/src/fxcodec/codec/fx_codec.cpp

Issue 1547833002: Switch from nonstd::unique_ptr to std::unique_ptr. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: rebase Created 4 years, 12 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/src/fxcodec/codec/codec_int.h ('k') | core/src/fxcodec/codec/fx_codec_flate.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 "core/include/fxcodec/fx_codec.h" 7 #include "core/include/fxcodec/fx_codec.h"
8 8
9 #include <cmath> 9 #include <cmath>
10 #include <utility> 10 #include <utility>
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 void CCodec_ScanlineDecoder::DownScale(int dest_width, int dest_height) { 127 void CCodec_ScanlineDecoder::DownScale(int dest_width, int dest_height) {
128 dest_width = std::abs(dest_width); 128 dest_width = std::abs(dest_width);
129 dest_height = std::abs(dest_height); 129 dest_height = std::abs(dest_height);
130 v_DownScale(dest_width, dest_height); 130 v_DownScale(dest_width, dest_height);
131 131
132 if (m_pDataCache && 132 if (m_pDataCache &&
133 m_pDataCache->IsSameDimensions(m_OutputWidth, m_OutputHeight)) { 133 m_pDataCache->IsSameDimensions(m_OutputWidth, m_OutputHeight)) {
134 return; 134 return;
135 } 135 }
136 136
137 nonstd::unique_ptr<ImageDataCache> cache( 137 std::unique_ptr<ImageDataCache> cache(
138 new ImageDataCache(m_OutputWidth, m_OutputHeight, m_Pitch)); 138 new ImageDataCache(m_OutputWidth, m_OutputHeight, m_Pitch));
139 if (!cache->AllocateCache()) 139 if (!cache->AllocateCache())
140 return; 140 return;
141 141
142 m_pDataCache = std::move(cache); 142 m_pDataCache = std::move(cache);
143 } 143 }
144 144
145 FX_BOOL CCodec_BasicModule::RunLengthEncode(const uint8_t* src_buf, 145 FX_BOOL CCodec_BasicModule::RunLengthEncode(const uint8_t* src_buf,
146 FX_DWORD src_size, 146 FX_DWORD src_size,
147 uint8_t*& dest_buf, 147 uint8_t*& dest_buf,
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 int nComps, 454 int nComps,
455 int bpc) { 455 int bpc) {
456 CCodec_RLScanlineDecoder* pRLScanlineDecoder = new CCodec_RLScanlineDecoder; 456 CCodec_RLScanlineDecoder* pRLScanlineDecoder = new CCodec_RLScanlineDecoder;
457 if (!pRLScanlineDecoder->Create(src_buf, src_size, width, height, nComps, 457 if (!pRLScanlineDecoder->Create(src_buf, src_size, width, height, nComps,
458 bpc)) { 458 bpc)) {
459 delete pRLScanlineDecoder; 459 delete pRLScanlineDecoder;
460 return NULL; 460 return NULL;
461 } 461 }
462 return pRLScanlineDecoder; 462 return pRLScanlineDecoder;
463 } 463 }
OLDNEW
« no previous file with comments | « core/src/fxcodec/codec/codec_int.h ('k') | core/src/fxcodec/codec/fx_codec_flate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698