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

Side by Side Diff: fpdfsdk/pdfwindow/PWL_FontMap.cpp

Issue 2381723002: Replace std::unique_ptr.reset() with WrapUnique assignment. (Closed)
Patch Set: build 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 | « fpdfsdk/javascript/JS_Runtime_Stub.cpp ('k') | fpdfsdk/pdfwindow/PWL_ListBox.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 "fpdfsdk/pdfwindow/PWL_FontMap.h" 7 #include "fpdfsdk/pdfwindow/PWL_FontMap.h"
8 8
9 #include "core/fpdfapi/fpdf_font/include/cpdf_font.h" 9 #include "core/fpdfapi/fpdf_font/include/cpdf_font.h"
10 #include "core/fpdfapi/fpdf_font/include/cpdf_fontencoding.h" 10 #include "core/fpdfapi/fpdf_font/include/cpdf_fontencoding.h"
(...skipping 29 matching lines...) Expand all
40 ASSERT(m_pSystemHandler); 40 ASSERT(m_pSystemHandler);
41 } 41 }
42 42
43 CPWL_FontMap::~CPWL_FontMap() { 43 CPWL_FontMap::~CPWL_FontMap() {
44 Empty(); 44 Empty();
45 } 45 }
46 46
47 CPDF_Document* CPWL_FontMap::GetDocument() { 47 CPDF_Document* CPWL_FontMap::GetDocument() {
48 if (!m_pPDFDoc) { 48 if (!m_pPDFDoc) {
49 if (CPDF_ModuleMgr::Get()) { 49 if (CPDF_ModuleMgr::Get()) {
50 m_pPDFDoc.reset(new CPDF_Document(std::unique_ptr<CPDF_Parser>())); 50 m_pPDFDoc = WrapUnique(new CPDF_Document(std::unique_ptr<CPDF_Parser>()));
51 m_pPDFDoc->CreateNewDoc(); 51 m_pPDFDoc->CreateNewDoc();
52 } 52 }
53 } 53 }
54 54
55 return m_pPDFDoc.get(); 55 return m_pPDFDoc.get();
56 } 56 }
57 57
58 CPDF_Font* CPWL_FontMap::GetPDFFont(int32_t nFontIndex) { 58 CPDF_Font* CPWL_FontMap::GetPDFFont(int32_t nFontIndex) {
59 if (nFontIndex >= 0 && nFontIndex < m_aData.GetSize()) { 59 if (nFontIndex >= 0 && nFontIndex < m_aData.GetSize()) {
60 if (CPWL_FontMap_Data* pData = m_aData.GetAt(nFontIndex)) { 60 if (CPWL_FontMap_Data* pData = m_aData.GetAt(nFontIndex)) {
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 return FXFONT_RUSSIAN_CHARSET; 438 return FXFONT_RUSSIAN_CHARSET;
439 439
440 if (word >= 0x0100 && word <= 0x024F) 440 if (word >= 0x0100 && word <= 0x024F)
441 return FXFONT_EASTEUROPE_CHARSET; 441 return FXFONT_EASTEUROPE_CHARSET;
442 442
443 if (word >= 0x1E00 && word <= 0x1EFF) 443 if (word >= 0x1E00 && word <= 0x1EFF)
444 return FXFONT_VIETNAMESE_CHARSET; 444 return FXFONT_VIETNAMESE_CHARSET;
445 445
446 return FXFONT_ANSI_CHARSET; 446 return FXFONT_ANSI_CHARSET;
447 } 447 }
OLDNEW
« no previous file with comments | « fpdfsdk/javascript/JS_Runtime_Stub.cpp ('k') | fpdfsdk/pdfwindow/PWL_ListBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698