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

Side by Side Diff: fpdfsdk/src/fsdk_annothandler.cpp

Issue 1773733002: Review and cleanup lint warnings. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 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 "fpdfsdk/include/fsdk_annothandler.h"
8
7 #include <algorithm> 9 #include <algorithm>
10 #include <vector>
8 11
9 #include "fpdfsdk/include/formfiller/FFL_FormFiller.h" 12 #include "fpdfsdk/include/formfiller/FFL_FormFiller.h"
10 #include "fpdfsdk/include/fsdk_annothandler.h"
11 #include "fpdfsdk/include/fsdk_define.h" 13 #include "fpdfsdk/include/fsdk_define.h"
12 #include "fpdfsdk/include/fsdk_mgr.h" 14 #include "fpdfsdk/include/fsdk_mgr.h"
13 15
14 #ifdef PDF_ENABLE_XFA 16 #ifdef PDF_ENABLE_XFA
15 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h" 17 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h"
16 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_util.h" 18 #include "fpdfsdk/include/fpdfxfa/fpdfxfa_util.h"
17 #endif // PDF_ENABLE_XFA 19 #endif // PDF_ENABLE_XFA
18 20
19 CPDFSDK_AnnotHandlerMgr::CPDFSDK_AnnotHandlerMgr(CPDFDoc_Environment* pApp) { 21 CPDFSDK_AnnotHandlerMgr::CPDFSDK_AnnotHandlerMgr(CPDFDoc_Environment* pApp) {
20 m_pApp = pApp; 22 m_pApp = pApp;
(...skipping 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after
1097 1099
1098 CPDFSDK_Annot* CPDFSDK_AnnotIterator::PrevAnnot() { 1100 CPDFSDK_Annot* CPDFSDK_AnnotIterator::PrevAnnot() {
1099 if (m_pos < m_iteratorAnnotList.size()) 1101 if (m_pos < m_iteratorAnnotList.size())
1100 return m_iteratorAnnotList[m_iteratorAnnotList.size() - ++m_pos]; 1102 return m_iteratorAnnotList[m_iteratorAnnotList.size() - ++m_pos];
1101 return nullptr; 1103 return nullptr;
1102 } 1104 }
1103 1105
1104 CPDFSDK_Annot* CPDFSDK_AnnotIterator::Next() { 1106 CPDFSDK_Annot* CPDFSDK_AnnotIterator::Next() {
1105 return m_bReverse ? PrevAnnot() : NextAnnot(); 1107 return m_bReverse ? PrevAnnot() : NextAnnot();
1106 } 1108 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698