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

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

Issue 1316123003: Style Change: SkNEW->new; SkDELETE->delete (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-26 (Wednesday) 15:59:00 EDT Created 5 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 | « src/pdf/SkPDFGraphicState.cpp ('k') | src/pdf/SkPDFShader.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 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 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 "SkPDFResourceDict.h" 8 #include "SkPDFResourceDict.h"
9 #include "SkPostConfig.h" 9 #include "SkPostConfig.h"
10 10
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 return keyString; 54 return keyString;
55 } 55 }
56 56
57 static void add_subdict( 57 static void add_subdict(
58 const SkTDArray<SkPDFObject*>& resourceList, 58 const SkTDArray<SkPDFObject*>& resourceList,
59 SkPDFResourceDict::SkPDFResourceType type, 59 SkPDFResourceDict::SkPDFResourceType type,
60 SkPDFDict* dst) { 60 SkPDFDict* dst) {
61 if (0 == resourceList.count()) { 61 if (0 == resourceList.count()) {
62 return; 62 return;
63 } 63 }
64 SkAutoTUnref<SkPDFDict> resources(SkNEW(SkPDFDict)); 64 SkAutoTUnref<SkPDFDict> resources(new SkPDFDict);
65 for (int i = 0; i < resourceList.count(); i++) { 65 for (int i = 0; i < resourceList.count(); i++) {
66 resources->insertObjRef(SkPDFResourceDict::getResourceName(type, i), 66 resources->insertObjRef(SkPDFResourceDict::getResourceName(type, i),
67 SkRef(resourceList[i])); 67 SkRef(resourceList[i]));
68 } 68 }
69 dst->insertObject(get_resource_type_name(type), resources.detach()); 69 dst->insertObject(get_resource_type_name(type), resources.detach());
70 } 70 }
71 71
72 SkPDFDict* SkPDFResourceDict::Create( 72 SkPDFDict* SkPDFResourceDict::Create(
73 const SkTDArray<SkPDFObject*>* gStateResources, 73 const SkTDArray<SkPDFObject*>* gStateResources,
74 const SkTDArray<SkPDFObject*>* patternResources, 74 const SkTDArray<SkPDFObject*>* patternResources,
75 const SkTDArray<SkPDFObject*>* xObjectResources, 75 const SkTDArray<SkPDFObject*>* xObjectResources,
76 const SkTDArray<SkPDFObject*>* fontResources) { 76 const SkTDArray<SkPDFObject*>* fontResources) {
77 SkAutoTUnref<SkPDFDict> dict(SkNEW(SkPDFDict)); 77 SkAutoTUnref<SkPDFDict> dict(new SkPDFDict);
78 static const char kProcs[][7] = { 78 static const char kProcs[][7] = {
79 "PDF", "Text", "ImageB", "ImageC", "ImageI"}; 79 "PDF", "Text", "ImageB", "ImageC", "ImageI"};
80 SkAutoTUnref<SkPDFArray> procSets(SkNEW(SkPDFArray)); 80 SkAutoTUnref<SkPDFArray> procSets(new SkPDFArray);
81 81
82 procSets->reserve(SK_ARRAY_COUNT(kProcs)); 82 procSets->reserve(SK_ARRAY_COUNT(kProcs));
83 for (size_t i = 0; i < SK_ARRAY_COUNT(kProcs); i++) { 83 for (size_t i = 0; i < SK_ARRAY_COUNT(kProcs); i++) {
84 procSets->appendName(kProcs[i]); 84 procSets->appendName(kProcs[i]);
85 } 85 }
86 dict->insertObject("ProcSets", procSets.detach()); 86 dict->insertObject("ProcSets", procSets.detach());
87 87
88 if (gStateResources) { 88 if (gStateResources) {
89 add_subdict(*gStateResources, kExtGState_ResourceType, dict); 89 add_subdict(*gStateResources, kExtGState_ResourceType, dict);
90 } 90 }
91 if (patternResources) { 91 if (patternResources) {
92 add_subdict(*patternResources, kPattern_ResourceType, dict); 92 add_subdict(*patternResources, kPattern_ResourceType, dict);
93 } 93 }
94 if (xObjectResources) { 94 if (xObjectResources) {
95 add_subdict(*xObjectResources, kXObject_ResourceType, dict); 95 add_subdict(*xObjectResources, kXObject_ResourceType, dict);
96 } 96 }
97 if (fontResources) { 97 if (fontResources) {
98 add_subdict(*fontResources, kFont_ResourceType, dict); 98 add_subdict(*fontResources, kFont_ResourceType, dict);
99 } 99 }
100 return dict.detach(); 100 return dict.detach();
101 } 101 }
OLDNEW
« no previous file with comments | « src/pdf/SkPDFGraphicState.cpp ('k') | src/pdf/SkPDFShader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698