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

Unified Diff: src/pdf/SkPDFFont.h

Issue 1823683005: SkPDF: Hold page objects, not SkPDFDevices. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: src/pdf/SkPDFFont.h
diff --git a/src/pdf/SkPDFFont.h b/src/pdf/SkPDFFont.h
index 4a01c41e76c5ad38e8843c7590ff4a3a41064007..e410e3ee00bcd2468ff920aad02f8f035a8367ea 100644
--- a/src/pdf/SkPDFFont.h
+++ b/src/pdf/SkPDFFont.h
@@ -46,16 +46,8 @@ public:
SkPDFGlyphSetMap();
~SkPDFGlyphSetMap();
- class F2BIter {
- public:
- explicit F2BIter(const SkPDFGlyphSetMap& map);
- const FontGlyphSetPair* next() const;
- void reset(const SkPDFGlyphSetMap& map);
-
- private:
- const SkTDArray<FontGlyphSetPair>* fMap;
- mutable int fIndex;
- };
+ const FontGlyphSetPair* begin() const { return fMap.begin(); }
+ const FontGlyphSetPair* end() const { return fMap.end(); }
void merge(const SkPDFGlyphSetMap& usage);
void reset();

Powered by Google App Engine
This is Rietveld 408576698