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

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

Issue 2489423002: Make CPDF_PageContentGenerator methods take object numbers (Closed)
Patch Set: Rebase past fix in separate CL 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 | « core/fpdfapi/page/cpdf_image.cpp ('k') | core/fpdfapi/page/cpdf_streamcontentparser.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_imageobject.h" 7 #include "core/fpdfapi/page/cpdf_imageobject.h"
8 8
9 #include <memory> 9 #include <memory>
10 10
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 delete m_pImage; 72 delete m_pImage;
73 m_pImage = nullptr; 73 m_pImage = nullptr;
74 m_pImageOwned = false; 74 m_pImageOwned = false;
75 return; 75 return;
76 } 76 }
77 77
78 if (!m_pImage) 78 if (!m_pImage)
79 return; 79 return;
80 80
81 CPDF_DocPageData* pPageData = m_pImage->GetDocument()->GetPageData(); 81 CPDF_DocPageData* pPageData = m_pImage->GetDocument()->GetPageData();
82 pPageData->ReleaseImage(m_pImage->GetStream()); 82 pPageData->ReleaseImage(m_pImage->GetStream()->GetObjNum());
83 m_pImage = nullptr; 83 m_pImage = nullptr;
84 } 84 }
OLDNEW
« no previous file with comments | « core/fpdfapi/page/cpdf_image.cpp ('k') | core/fpdfapi/page/cpdf_streamcontentparser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698