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

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

Issue 2287313004: Make CPDF_TextState have a CPDF_TextStateData rather than inheriting one. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@moar_better_constness
Patch Set: Casts, Casts, New -> Emplace. Created 4 years, 3 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_allstates.cpp ('k') | core/fpdfapi/fpdf_page/cpdf_textobject.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_graphicstates.h" 7 #include "core/fpdfapi/fpdf_page/cpdf_graphicstates.h"
8 8
9 CPDF_GraphicStates::CPDF_GraphicStates() {} 9 CPDF_GraphicStates::CPDF_GraphicStates() {}
10 10
11 CPDF_GraphicStates::~CPDF_GraphicStates() {} 11 CPDF_GraphicStates::~CPDF_GraphicStates() {}
12 12
13 void CPDF_GraphicStates::DefaultStates() { 13 void CPDF_GraphicStates::DefaultStates() {
14 m_ColorState.New()->Default(); 14 m_ColorState.Emplace()->Default();
15 } 15 }
16 16
17 void CPDF_GraphicStates::CopyStates(const CPDF_GraphicStates& src) { 17 void CPDF_GraphicStates::CopyStates(const CPDF_GraphicStates& src) {
18 m_ClipPath = src.m_ClipPath; 18 m_ClipPath = src.m_ClipPath;
19 m_GraphState = src.m_GraphState; 19 m_GraphState = src.m_GraphState;
20 m_ColorState = src.m_ColorState; 20 m_ColorState = src.m_ColorState;
21 m_TextState = src.m_TextState; 21 m_TextState = src.m_TextState;
22 m_GeneralState = src.m_GeneralState; 22 m_GeneralState = src.m_GeneralState;
23 } 23 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_page/cpdf_allstates.cpp ('k') | core/fpdfapi/fpdf_page/cpdf_textobject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698