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

Side by Side Diff: core/fpdfapi/fpdf_basic_module.cpp

Issue 1864153002: Move include/fxcodec to fxcodec/include (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master 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
« no previous file with comments | « BUILD.gn ('k') | core/fpdfapi/fpdf_page/cpdf_colorspace.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/fpdfapi/include/cpdf_modulemgr.h" 7 #include "core/fpdfapi/include/cpdf_modulemgr.h"
8 8
9 #include "core/fpdfapi/ipdf_rendermodule.h" 9 #include "core/fpdfapi/ipdf_rendermodule.h"
10 #include "core/include/fxcodec/fx_codec.h" 10 #include "core/fxcodec/include/fx_codec.h"
11 11
12 namespace { 12 namespace {
13 13
14 CPDF_ModuleMgr* g_FPDFAPI_pDefaultMgr = nullptr; 14 CPDF_ModuleMgr* g_FPDFAPI_pDefaultMgr = nullptr;
15 15
16 } // namespace 16 } // namespace
17 17
18 // static 18 // static
19 CPDF_ModuleMgr* CPDF_ModuleMgr::Get() { 19 CPDF_ModuleMgr* CPDF_ModuleMgr::Get() {
20 return g_FPDFAPI_pDefaultMgr; 20 return g_FPDFAPI_pDefaultMgr;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 } 55 }
56 ICodec_Jbig2Module* CPDF_ModuleMgr::GetJbig2Module() { 56 ICodec_Jbig2Module* CPDF_ModuleMgr::GetJbig2Module() {
57 return m_pCodecModule ? m_pCodecModule->GetJbig2Module() : NULL; 57 return m_pCodecModule ? m_pCodecModule->GetJbig2Module() : NULL;
58 } 58 }
59 ICodec_IccModule* CPDF_ModuleMgr::GetIccModule() { 59 ICodec_IccModule* CPDF_ModuleMgr::GetIccModule() {
60 return m_pCodecModule ? m_pCodecModule->GetIccModule() : NULL; 60 return m_pCodecModule ? m_pCodecModule->GetIccModule() : NULL;
61 } 61 }
62 ICodec_FlateModule* CPDF_ModuleMgr::GetFlateModule() { 62 ICodec_FlateModule* CPDF_ModuleMgr::GetFlateModule() {
63 return m_pCodecModule ? m_pCodecModule->GetFlateModule() : NULL; 63 return m_pCodecModule ? m_pCodecModule->GetFlateModule() : NULL;
64 } 64 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | core/fpdfapi/fpdf_page/cpdf_colorspace.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698