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

Side by Side Diff: core/fpdfapi/page/cpdf_allstates.cpp

Issue 2385293002: Make CPDF_Object containers hold objects via unique pointers (Closed)
Patch Set: Remove duplicated line 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 | « core/fpdfapi/edit/fpdf_edit_create.cpp ('k') | core/fpdfapi/page/cpdf_colorspace.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 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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/fpdfapi/page/cpdf_allstates.h" 7 #include "core/fpdfapi/page/cpdf_allstates.h"
8 8
9 #include "core/fpdfapi/page/pageint.h" 9 #include "core/fpdfapi/page/pageint.h"
10 #include "core/fpdfapi/parser/cpdf_array.h" 10 #include "core/fpdfapi/parser/cpdf_array.h"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 void CPDF_AllStates::SetLineDash(CPDF_Array* pArray, 45 void CPDF_AllStates::SetLineDash(CPDF_Array* pArray,
46 FX_FLOAT phase, 46 FX_FLOAT phase,
47 FX_FLOAT scale) { 47 FX_FLOAT scale) {
48 m_GraphState.SetLineDash(pArray, phase, scale); 48 m_GraphState.SetLineDash(pArray, phase, scale);
49 } 49 }
50 50
51 void CPDF_AllStates::ProcessExtGS(CPDF_Dictionary* pGS, 51 void CPDF_AllStates::ProcessExtGS(CPDF_Dictionary* pGS,
52 CPDF_StreamContentParser* pParser) { 52 CPDF_StreamContentParser* pParser) {
53 for (const auto& it : *pGS) { 53 for (const auto& it : *pGS) {
54 const CFX_ByteString& key_str = it.first; 54 const CFX_ByteString& key_str = it.first;
55 CPDF_Object* pElement = it.second; 55 CPDF_Object* pElement = it.second.get();
56 CPDF_Object* pObject = pElement ? pElement->GetDirect() : nullptr; 56 CPDF_Object* pObject = pElement ? pElement->GetDirect() : nullptr;
57 if (!pObject) 57 if (!pObject)
58 continue; 58 continue;
59 59
60 uint32_t key = key_str.GetID(); 60 uint32_t key = key_str.GetID();
61 switch (key) { 61 switch (key) {
62 case FXBSTR_ID('L', 'W', 0, 0): 62 case FXBSTR_ID('L', 'W', 0, 0):
63 m_GraphState.SetLineWidth(pObject->GetNumber()); 63 m_GraphState.SetLineWidth(pObject->GetNumber());
64 break; 64 break;
65 case FXBSTR_ID('L', 'C', 0, 0): 65 case FXBSTR_ID('L', 'C', 0, 0):
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 case FXBSTR_ID('A', 'I', 'S', 0): 166 case FXBSTR_ID('A', 'I', 'S', 0):
167 m_GeneralState.SetAlphaSource(!!pObject->GetInteger()); 167 m_GeneralState.SetAlphaSource(!!pObject->GetInteger());
168 break; 168 break;
169 case FXBSTR_ID('T', 'K', 0, 0): 169 case FXBSTR_ID('T', 'K', 0, 0):
170 m_GeneralState.SetTextKnockout(!!pObject->GetInteger()); 170 m_GeneralState.SetTextKnockout(!!pObject->GetInteger());
171 break; 171 break;
172 } 172 }
173 } 173 }
174 m_GeneralState.SetMatrix(m_CTM); 174 m_GeneralState.SetMatrix(m_CTM);
175 } 175 }
OLDNEW
« no previous file with comments | « core/fpdfapi/edit/fpdf_edit_create.cpp ('k') | core/fpdfapi/page/cpdf_colorspace.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698