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

Side by Side Diff: core/fpdfapi/fpdf_page/pageint.h

Issue 1847333004: Remove _FXBSTR* and calls to FX_BSTRC. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 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 #ifndef CORE_FPDFAPI_FPDF_PAGE_PAGEINT_H_ 7 #ifndef CORE_FPDFAPI_FPDF_PAGE_PAGEINT_H_
8 #define CORE_FPDFAPI_FPDF_PAGE_PAGEINT_H_ 8 #define CORE_FPDFAPI_FPDF_PAGE_PAGEINT_H_
9 9
10 #include <map> 10 #include <map>
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 }; 498 };
499 499
500 #define MAX_PATTERN_COLORCOMPS 16 500 #define MAX_PATTERN_COLORCOMPS 16
501 struct PatternValue { 501 struct PatternValue {
502 CPDF_Pattern* m_pPattern; 502 CPDF_Pattern* m_pPattern;
503 CPDF_CountedPattern* m_pCountedPattern; 503 CPDF_CountedPattern* m_pCountedPattern;
504 int m_nComps; 504 int m_nComps;
505 FX_FLOAT m_Comps[MAX_PATTERN_COLORCOMPS]; 505 FX_FLOAT m_Comps[MAX_PATTERN_COLORCOMPS];
506 }; 506 };
507 507
508 CFX_ByteStringC PDF_FindKeyAbbreviationForTesting(const CFX_ByteStringC& abbr);
509 CFX_ByteStringC PDF_FindValueAbbreviationForTesting(
510 const CFX_ByteStringC& abbr);
511
508 void PDF_ReplaceAbbr(CPDF_Object* pObj); 512 void PDF_ReplaceAbbr(CPDF_Object* pObj);
509 bool IsPathOperator(const uint8_t* buf, size_t len); 513 bool IsPathOperator(const uint8_t* buf, size_t len);
510 514
511 #endif // CORE_FPDFAPI_FPDF_PAGE_PAGEINT_H_ 515 #endif // CORE_FPDFAPI_FPDF_PAGE_PAGEINT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698