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

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

Issue 942153002: PDF: remove unnecessary mutexes. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 10 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 | « no previous file | 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 SkPDFFont_DEFINED 10 #ifndef SkPDFFont_DEFINED
11 #define SkPDFFont_DEFINED 11 #define SkPDFFont_DEFINED
12 12
13 #include "SkAdvancedTypefaceMetrics.h" 13 #include "SkAdvancedTypefaceMetrics.h"
14 #include "SkBitSet.h" 14 #include "SkBitSet.h"
15 #include "SkPDFTypes.h" 15 #include "SkPDFTypes.h"
16 #include "SkTDArray.h" 16 #include "SkTDArray.h"
17 #include "SkThread.h"
18 #include "SkTypeface.h" 17 #include "SkTypeface.h"
19 18
20 class SkPaint; 19 class SkPaint;
21 class SkPDFCanon; 20 class SkPDFCanon;
22 class SkPDFCatalog; 21 class SkPDFCatalog;
23 class SkPDFFont; 22 class SkPDFFont;
24 23
25 class SkPDFGlyphSet : SkNoncopyable { 24 class SkPDFGlyphSet : SkNoncopyable {
26 public: 25 public:
27 SkPDFGlyphSet(); 26 SkPDFGlyphSet();
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 uint16_t fLastGlyphID; 199 uint16_t fLastGlyphID;
201 SkAutoTUnref<const SkAdvancedTypefaceMetrics> fFontInfo; 200 SkAutoTUnref<const SkAdvancedTypefaceMetrics> fFontInfo;
202 SkAutoTUnref<SkPDFDict> fDescriptor; 201 SkAutoTUnref<SkPDFDict> fDescriptor;
203 202
204 SkAdvancedTypefaceMetrics::FontType fFontType; 203 SkAdvancedTypefaceMetrics::FontType fFontType;
205 204
206 typedef SkPDFDict INHERITED; 205 typedef SkPDFDict INHERITED;
207 }; 206 };
208 207
209 #endif 208 #endif
OLDNEW
« no previous file with comments | « no previous file | src/pdf/SkPDFGraphicState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698