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

Side by Side Diff: core/fpdftext/fpdf_text_int.cpp

Issue 1805603002: core/include/fdpfapi cleanup Part I. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master 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
« no previous file with comments | « core/fpdfdoc/doc_viewerPreferences.cpp ('k') | core/fxcodec/jbig2/JBig2_BitStream.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 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 "core/fpdftext/fpdf_text_int.h" 7 #include "core/fpdftext/fpdf_text_int.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <cctype> 10 #include <cctype>
11 #include <cwctype> 11 #include <cwctype>
12 #include <memory> 12 #include <memory>
13 #include <utility> 13 #include <utility>
14 #include <vector> 14 #include <vector>
15 15
16 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h"
17 #include "core/fpdfapi/fpdf_parser/include/cpdf_string.h"
16 #include "core/fpdftext/include/ipdf_linkextract.h" 18 #include "core/fpdftext/include/ipdf_linkextract.h"
17 #include "core/fpdftext/include/ipdf_textpage.h" 19 #include "core/fpdftext/include/ipdf_textpage.h"
18 #include "core/fpdftext/include/ipdf_textpagefind.h" 20 #include "core/fpdftext/include/ipdf_textpagefind.h"
19 #include "core/fpdftext/unicodenormalization.h" 21 #include "core/fpdftext/unicodenormalization.h"
20 #include "core/include/fpdfapi/cpdf_dictionary.h"
21 #include "core/include/fpdfapi/cpdf_string.h"
22 #include "core/include/fpdfapi/fpdf_module.h"
23 #include "core/include/fpdfapi/fpdf_page.h" 22 #include "core/include/fpdfapi/fpdf_page.h"
24 #include "core/include/fpdfapi/fpdf_pageobj.h" 23 #include "core/include/fpdfapi/fpdf_pageobj.h"
25 #include "core/include/fpdfapi/fpdf_resource.h" 24 #include "core/include/fpdfapi/fpdf_resource.h"
26 #include "core/include/fxcrt/fx_bidi.h" 25 #include "core/include/fxcrt/fx_bidi.h"
27 #include "core/include/fxcrt/fx_ext.h" 26 #include "core/include/fxcrt/fx_ext.h"
28 #include "core/include/fxcrt/fx_ucd.h" 27 #include "core/include/fxcrt/fx_ucd.h"
29 #include "third_party/base/stl_util.h" 28 #include "third_party/base/stl_util.h"
30 29
31 #define FPDFTEXT_RLTB 1 30 #define FPDFTEXT_RLTB 1
32 #define FPDFTEXT_LEFT -1 31 #define FPDFTEXT_LEFT -1
(...skipping 2470 matching lines...) Expand 10 before | Expand all | Expand 10 after
2503 if (!m_bIsParsed || index < 0 || index >= m_LinkList.GetSize()) { 2502 if (!m_bIsParsed || index < 0 || index >= m_LinkList.GetSize()) {
2504 return; 2503 return;
2505 } 2504 }
2506 CPDF_LinkExt* link = NULL; 2505 CPDF_LinkExt* link = NULL;
2507 link = m_LinkList.GetAt(index); 2506 link = m_LinkList.GetAt(index);
2508 if (!link) { 2507 if (!link) {
2509 return; 2508 return;
2510 } 2509 }
2511 m_pTextPage->GetRectArray(link->m_Start, link->m_Count, rects); 2510 m_pTextPage->GetRectArray(link->m_Start, link->m_Count, rects);
2512 } 2511 }
OLDNEW
« no previous file with comments | « core/fpdfdoc/doc_viewerPreferences.cpp ('k') | core/fxcodec/jbig2/JBig2_BitStream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698