diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-08-19 10:28:50 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-08-19 10:28:50 -0700 |
commit | 71c15a5e6652952a94ba3a3ef7ac0392e3a06962 (patch) | |
tree | c6983e985c49e4f30906082b73045db14d8cb481 /fpdfsdk/src/fpdfview.cpp | |
parent | a2b3ae23556fb2f1adbc008574f33bf365476af9 (diff) | |
download | pdfium-71c15a5e6652952a94ba3a3ef7ac0392e3a06962.tar.xz |
Extern in .cpp files is a code smell.
Part 1. Move to headers so compiler can type check against
the definitions.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1299963002 .
Diffstat (limited to 'fpdfsdk/src/fpdfview.cpp')
-rw-r--r-- | fpdfsdk/src/fpdfview.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fpdfsdk/src/fpdfview.cpp b/fpdfsdk/src/fpdfview.cpp index a1d5689c79..bed00d3172 100644 --- a/fpdfsdk/src/fpdfview.cpp +++ b/fpdfsdk/src/fpdfview.cpp @@ -182,8 +182,6 @@ DLLEXPORT FPDF_DOCUMENT STDCALL FPDF_LoadDocument(FPDF_STRING file_path, return pParser->GetDocument(); } -extern void CheckUnSupportError(CPDF_Document* pDoc, FX_DWORD err_code); - class CMemFile final : public IFX_FileRead { public: CMemFile(uint8_t* pBuf, FX_FILESIZE size) : m_pBuf(pBuf), m_size(size) {} |