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

Side by Side Diff: core/fpdfdoc/cpdf_linklist.cpp

Issue 2334323005: Rename dictionary set and get methods (Closed)
Patch Set: Created 4 years, 3 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/fpdfdoc/cpdf_link.cpp ('k') | core/fpdfdoc/cpdf_metadata.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/fpdfdoc/include/cpdf_linklist.h" 7 #include "core/fpdfdoc/include/cpdf_linklist.h"
8 8
9 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" 9 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h"
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 if (z_order) 51 if (z_order)
52 *z_order = annot_index; 52 *z_order = annot_index;
53 return link; 53 return link;
54 } 54 }
55 return CPDF_Link(); 55 return CPDF_Link();
56 } 56 }
57 57
58 void CPDF_LinkList::LoadPageLinks(CPDF_Page* pPage, 58 void CPDF_LinkList::LoadPageLinks(CPDF_Page* pPage,
59 std::vector<CPDF_Dictionary*>* pList) { 59 std::vector<CPDF_Dictionary*>* pList) {
60 CPDF_Array* pAnnotList = pPage->m_pFormDict->GetArrayBy("Annots"); 60 CPDF_Array* pAnnotList = pPage->m_pFormDict->GetArrayFor("Annots");
61 if (!pAnnotList) 61 if (!pAnnotList)
62 return; 62 return;
63 63
64 for (size_t i = 0; i < pAnnotList->GetCount(); ++i) { 64 for (size_t i = 0; i < pAnnotList->GetCount(); ++i) {
65 CPDF_Dictionary* pAnnot = pAnnotList->GetDictAt(i); 65 CPDF_Dictionary* pAnnot = pAnnotList->GetDictAt(i);
66 bool add_link = (pAnnot && pAnnot->GetStringBy("Subtype") == "Link"); 66 bool add_link = (pAnnot && pAnnot->GetStringFor("Subtype") == "Link");
67 // Add non-links as nullptrs to preserve z-order. 67 // Add non-links as nullptrs to preserve z-order.
68 pList->push_back(add_link ? pAnnot : nullptr); 68 pList->push_back(add_link ? pAnnot : nullptr);
69 } 69 }
70 } 70 }
OLDNEW
« no previous file with comments | « core/fpdfdoc/cpdf_link.cpp ('k') | core/fpdfdoc/cpdf_metadata.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698