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

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

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

Powered by Google App Engine
This is Rietveld 408576698