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

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

Issue 2110033002: Remove unnecessary includes in src/pdf/ (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: fix order Created 4 years, 5 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.h ('k') | src/pdf/SkPDFFormXObject.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 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include <ctype.h> 8 #include <ctype.h>
9 9
10 #include "SkData.h" 10 #include "SkData.h"
11 #include "SkGlyphCache.h" 11 #include "SkGlyphCache.h"
12 #include "SkPaint.h" 12 #include "SkPaint.h"
13 #include "SkPDFCanon.h" 13 #include "SkPDFCanon.h"
14 #include "SkPDFDevice.h" 14 #include "SkPDFDevice.h"
15 #include "SkPDFFont.h" 15 #include "SkPDFFont.h"
16 #include "SkPDFFontImpl.h" 16 #include "SkPDFFontImpl.h"
17 #include "SkPDFStream.h" 17 #include "SkPDFStream.h"
18 #include "SkPDFTypes.h"
19 #include "SkPDFUtils.h" 18 #include "SkPDFUtils.h"
20 #include "SkRefCnt.h" 19 #include "SkRefCnt.h"
21 #include "SkScalar.h" 20 #include "SkScalar.h"
22 #include "SkStream.h" 21 #include "SkStream.h"
23 #include "SkTypefacePriv.h" 22 #include "SkTypefacePriv.h"
24 #include "SkTypes.h" 23 #include "SkTypes.h"
25 #include "SkUtils.h" 24 #include "SkUtils.h"
26 25
27 #if defined (SK_SFNTLY_SUBSETTER) 26 #if defined (SK_SFNTLY_SUBSETTER)
28 #if defined (GOOGLE3) 27 #if defined (GOOGLE3)
(...skipping 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after
1436 } 1435 }
1437 return *canon->fCanEmbedTypeface.set(id, canEmbed); 1436 return *canon->fCanEmbedTypeface.set(id, canEmbed);
1438 } 1437 }
1439 1438
1440 void SkPDFFont::drop() { 1439 void SkPDFFont::drop() {
1441 fTypeface = nullptr; 1440 fTypeface = nullptr;
1442 fFontInfo = nullptr; 1441 fFontInfo = nullptr;
1443 fDescriptor = nullptr; 1442 fDescriptor = nullptr;
1444 this->SkPDFDict::drop(); 1443 this->SkPDFDict::drop();
1445 } 1444 }
OLDNEW
« no previous file with comments | « src/pdf/SkPDFFont.h ('k') | src/pdf/SkPDFFormXObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698