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

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

Issue 1103163002: SkPDF: clean up uses of deprecated calls in SkPDFDevice (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 8 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/SkPDFDevice.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 /* 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 SkPDFDevice_DEFINED 10 #ifndef SkPDFDevice_DEFINED
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 */ 290 */
291 void copyContentEntriesToData(ContentEntry* entry, SkWStream* data) const; 291 void copyContentEntriesToData(ContentEntry* entry, SkWStream* data) const;
292 292
293 bool handleInversePath(const SkDraw& d, const SkPath& origPath, 293 bool handleInversePath(const SkDraw& d, const SkPath& origPath,
294 const SkPaint& paint, bool pathIsMutable, 294 const SkPaint& paint, bool pathIsMutable,
295 const SkMatrix* prePathMatrix = NULL); 295 const SkMatrix* prePathMatrix = NULL);
296 bool handleRectAnnotation(const SkRect& r, const SkMatrix& matrix, 296 bool handleRectAnnotation(const SkRect& r, const SkMatrix& matrix,
297 const SkPaint& paint); 297 const SkPaint& paint);
298 bool handlePointAnnotation(const SkPoint* points, size_t count, 298 bool handlePointAnnotation(const SkPoint* points, size_t count,
299 const SkMatrix& matrix, const SkPaint& paint); 299 const SkMatrix& matrix, const SkPaint& paint);
300 SkPDFDict* createLinkAnnotation(const SkRect& r, const SkMatrix& matrix); 300 void addAnnotation(SkPDFDict*);
hal.canary 2015/04/28 13:15:48 To reduce reference-churn and increase pointer saf
301 void handleLinkToURL(SkData* urlData, const SkRect& r, 301 void handleLinkToURL(SkData* urlData, const SkRect& r,
302 const SkMatrix& matrix); 302 const SkMatrix& matrix);
303 void handleLinkToNamedDest(SkData* nameData, const SkRect& r, 303 void handleLinkToNamedDest(SkData* nameData, const SkRect& r,
304 const SkMatrix& matrix); 304 const SkMatrix& matrix);
305 void defineNamedDestination(SkData* nameData, const SkPoint& point, 305 void defineNamedDestination(SkData* nameData, const SkPoint& point,
306 const SkMatrix& matrix); 306 const SkMatrix& matrix);
307 307
308 typedef SkBaseDevice INHERITED; 308 typedef SkBaseDevice INHERITED;
309 309
310 // TODO(edisonn): Only SkDocument_PDF and SkPDFImageShader should be able to create 310 // TODO(edisonn): Only SkDocument_PDF and SkPDFImageShader should be able to create
311 // an SkPDFDevice 311 // an SkPDFDevice
312 //friend class SkDocument_PDF; 312 //friend class SkDocument_PDF;
313 //friend class SkPDFImageShader; 313 //friend class SkPDFImageShader;
314 }; 314 };
315 315
316 #endif 316 #endif
OLDNEW
« no previous file with comments | « no previous file | src/pdf/SkPDFDevice.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698