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

Side by Side Diff: src/pdf/SkPDFFontImpl.h

Issue 1304493002: SkPDF: Simplify PDFStream / emitObject() const (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: formatting Created 5 years, 4 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 | « src/pdf/SkPDFFont.cpp ('k') | src/pdf/SkPDFGraphicState.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #ifndef SkPDFFontImpl_DEFINED 10 #ifndef SkPDFFontImpl_DEFINED
11 #define SkPDFFontImpl_DEFINED 11 #define SkPDFFontImpl_DEFINED
12 12
13 #include "SkPDFFont.h" 13 #include "SkPDFFont.h"
14 14
15 class SkPDFType0Font : public SkPDFFont { 15 class SkPDFType0Font : public SkPDFFont {
16 public: 16 public:
17 virtual ~SkPDFType0Font(); 17 virtual ~SkPDFType0Font();
18 virtual bool multiByteGlyphs() const { return true; } 18 virtual bool multiByteGlyphs() const { return true; }
19 virtual SkPDFFont* getFontSubset(const SkPDFGlyphSet* usage); 19 virtual SkPDFFont* getFontSubset(const SkPDFGlyphSet* usage);
20 #ifdef SK_DEBUG 20 #ifdef SK_DEBUG
21 virtual void emitObject(SkWStream*, 21 void emitObject(SkWStream*,
22 const SkPDFObjNumMap&, 22 const SkPDFObjNumMap&,
23 const SkPDFSubstituteMap&); 23 const SkPDFSubstituteMap&) const override;
24 #endif 24 #endif
25 25
26 private: 26 private:
27 friend class SkPDFFont; // to access the constructor 27 friend class SkPDFFont; // to access the constructor
28 #ifdef SK_DEBUG 28 #ifdef SK_DEBUG
29 bool fPopulated; 29 bool fPopulated;
30 typedef SkPDFDict INHERITED; 30 typedef SkPDFDict INHERITED;
31 #endif 31 #endif
32 32
33 SkPDFType0Font(const SkAdvancedTypefaceMetrics* info, 33 SkPDFType0Font(const SkAdvancedTypefaceMetrics* info,
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 friend class SkPDFFont; // to access the constructor 81 friend class SkPDFFont; // to access the constructor
82 82
83 SkPDFType3Font(const SkAdvancedTypefaceMetrics* info, 83 SkPDFType3Font(const SkAdvancedTypefaceMetrics* info,
84 SkTypeface* typeface, 84 SkTypeface* typeface,
85 uint16_t glyphID); 85 uint16_t glyphID);
86 86
87 bool populate(uint16_t glyphID); 87 bool populate(uint16_t glyphID);
88 }; 88 };
89 89
90 #endif 90 #endif
OLDNEW
« no previous file with comments | « src/pdf/SkPDFFont.cpp ('k') | src/pdf/SkPDFGraphicState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698