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

Unified Diff: src/pdf/SkPDFDevice.h

Issue 953053002: SkPDF: remove SK_API on no-longer-public functions. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rebase: 2015-02-24 (Tuesday) 18:48:48 EST 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/pdf/SkPDFDocument.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pdf/SkPDFDevice.h
diff --git a/src/pdf/SkPDFDevice.h b/src/pdf/SkPDFDevice.h
index 679c24b8bfe1a8e0cbde9607bbce1de754ddf54b..8a883140091740fa28bfea1a62804966263f0248 100644
--- a/src/pdf/SkPDFDevice.h
+++ b/src/pdf/SkPDFDevice.h
@@ -134,17 +134,17 @@ public:
* clipped. A simple way to avoid the bug is to always draw the margin
* content last.
*/
- SK_API void setDrawingArea(DrawingArea drawingArea);
+ void setDrawingArea(DrawingArea drawingArea);
// PDF specific methods.
/** Returns the resource dictionary for this device.
*/
- SK_API SkPDFResourceDict* getResourceDict();
+ SkPDFResourceDict* getResourceDict();
/** Get the fonts used on this device.
*/
- SK_API const SkTDArray<SkPDFFont*>& getFontResources() const;
+ const SkTDArray<SkPDFFont*>& getFontResources() const;
/** Add our named destinations to the supplied dictionary.
* @param dict Dictionary to add destinations to.
@@ -155,21 +155,21 @@ public:
/** Returns a copy of the media box for this device. The caller is required
* to unref() this when it is finished.
*/
- SK_API SkPDFArray* copyMediaBox() const;
+ SkPDFArray* copyMediaBox() const;
/** Get the annotations from this page, or NULL if there are none.
*/
- SK_API SkPDFArray* getAnnotations() const { return fAnnotations; }
+ SkPDFArray* getAnnotations() const { return fAnnotations; }
/** Returns a SkStream with the page contents. The caller is responsible
- for a deleting the returned value.
+ * for a deleting the returned value.
*/
- SK_API SkStreamAsset* content() const;
+ SkStreamAsset* content() const;
/** Writes the page contents to the stream. */
- SK_API void writeContent(SkWStream*) const;
+ void writeContent(SkWStream*) const;
- SK_API const SkMatrix& initialTransform() const {
+ const SkMatrix& initialTransform() const {
return fInitialTransform;
}
« no previous file with comments | « no previous file | src/pdf/SkPDFDocument.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698