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

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

Issue 2507023006: Move CPDF_DocRenderData from render_int (Closed)
Patch Set: Comments Created 4 years, 1 month 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 | « BUILD.gn ('k') | core/fpdfapi/parser/cpdf_document.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_generalstate.h" 7 #include "core/fpdfapi/page/cpdf_generalstate.h"
8 8
9 #include "core/fpdfapi/parser/cpdf_document.h" 9 #include "core/fpdfapi/parser/cpdf_document.h"
10 #include "core/fpdfapi/render/cpdf_docrenderdata.h"
10 #include "core/fpdfapi/render/render_int.h" 11 #include "core/fpdfapi/render/render_int.h"
11 12
12 namespace { 13 namespace {
13 14
14 int RI_StringToId(const CFX_ByteString& ri) { 15 int RI_StringToId(const CFX_ByteString& ri) {
15 uint32_t id = ri.GetID(); 16 uint32_t id = ri.GetID();
16 if (id == FXBSTR_ID('A', 'b', 's', 'o')) 17 if (id == FXBSTR_ID('A', 'b', 's', 'o'))
17 return 1; 18 return 1;
18 19
19 if (id == FXBSTR_ID('S', 'a', 't', 'u')) 20 if (id == FXBSTR_ID('S', 'a', 't', 'u'))
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 } 273 }
273 } 274 }
274 275
275 CPDF_GeneralState::StateData::~StateData() { 276 CPDF_GeneralState::StateData::~StateData() {
276 if (m_pTransferFunc && m_pTransferFunc->m_pPDFDoc) { 277 if (m_pTransferFunc && m_pTransferFunc->m_pPDFDoc) {
277 CPDF_DocRenderData* pDocCache = m_pTransferFunc->m_pPDFDoc->GetRenderData(); 278 CPDF_DocRenderData* pDocCache = m_pTransferFunc->m_pPDFDoc->GetRenderData();
278 if (pDocCache) 279 if (pDocCache)
279 pDocCache->ReleaseTransferFunc(m_pTR); 280 pDocCache->ReleaseTransferFunc(m_pTR);
280 } 281 }
281 } 282 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | core/fpdfapi/parser/cpdf_document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698