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

Side by Side Diff: core/fpdfapi/fpdf_page/cpdf_pagemodule.cpp

Issue 2060973002: Make code compile with clang_use_chrome_plugin (part I) (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: address comments Created 4 years, 6 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/fpdfapi/fpdf_page/cpdf_pagemodule.h ('k') | core/fpdfapi/fpdf_page/cpdf_pageobject.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 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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/fpdf_page/cpdf_pagemodule.h" 7 #include "core/fpdfapi/fpdf_page/cpdf_pagemodule.h"
8 8
9 CPDF_PageModule::CPDF_PageModule()
10 : m_StockGrayCS(nullptr, PDFCS_DEVICEGRAY),
11 m_StockRGBCS(nullptr, PDFCS_DEVICERGB),
12 m_StockCMYKCS(nullptr, PDFCS_DEVICECMYK),
13 m_StockPatternCS(nullptr) {}
14
15 CPDF_PageModule::~CPDF_PageModule() {}
16
17 CPDF_FontGlobals* CPDF_PageModule::GetFontGlobals() {
18 return &m_FontGlobals;
19 }
20
9 CPDF_ColorSpace* CPDF_PageModule::GetStockCS(int family) { 21 CPDF_ColorSpace* CPDF_PageModule::GetStockCS(int family) {
10 if (family == PDFCS_DEVICEGRAY) 22 if (family == PDFCS_DEVICEGRAY)
11 return &m_StockGrayCS; 23 return &m_StockGrayCS;
12 if (family == PDFCS_DEVICERGB) 24 if (family == PDFCS_DEVICERGB)
13 return &m_StockRGBCS; 25 return &m_StockRGBCS;
14 if (family == PDFCS_DEVICECMYK) 26 if (family == PDFCS_DEVICECMYK)
15 return &m_StockCMYKCS; 27 return &m_StockCMYKCS;
16 if (family == PDFCS_PATTERN) 28 if (family == PDFCS_PATTERN)
17 return &m_StockPatternCS; 29 return &m_StockPatternCS;
18 return nullptr; 30 return nullptr;
19 } 31 }
32
33 void CPDF_PageModule::ClearStockFont(CPDF_Document* pDoc) {
34 m_FontGlobals.Clear(pDoc);
35 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_page/cpdf_pagemodule.h ('k') | core/fpdfapi/fpdf_page/cpdf_pageobject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698