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

Side by Side Diff: experimental/PdfViewer/SkPdfUtils.h

Issue 23361009: pdfviewer: code cleanup - add licence on files, make replace __DEFINE__foo with foo_DEFINED to matc… (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « experimental/PdfViewer/SkPdfGraphicsState.cpp ('k') | experimental/PdfViewer/SkPdfUtils.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 #ifndef __DEFINED__SkPdfUtils 1 /*
2 #define __DEFINED__SkPdfUtils 2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef SkPdfUtils_DEFINED
9 #define SkPdfUtils_DEFINED
3 10
4 #include "SkMatrix.h" 11 #include "SkMatrix.h"
5 #include "SkRect.h" 12 #include "SkRect.h"
6 #include "SkPdfConfig.h" 13 #include "SkPdfConfig.h"
7 #include "SkString.h" 14 #include "SkString.h"
8 15
9 class SkPdfArray; 16 class SkPdfArray;
10 class SkPdfContext; 17 class SkPdfContext;
11 class SkCanvas; 18 class SkCanvas;
12 class SkPdfNativeObject; 19 class SkPdfNativeObject;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 // TRACE functions 63 // TRACE functions
57 // 64 //
58 #ifdef PDF_TRACE 65 #ifdef PDF_TRACE
59 void SkTraceMatrix(const SkMatrix& matrix, const char* sz); 66 void SkTraceMatrix(const SkMatrix& matrix, const char* sz);
60 void SkTraceRect(const SkRect& rect, const char* sz); 67 void SkTraceRect(const SkRect& rect, const char* sz);
61 #else 68 #else
62 #define SkTraceMatrix(a,b) 69 #define SkTraceMatrix(a,b)
63 #define SkTraceRect(a,b) 70 #define SkTraceRect(a,b)
64 #endif 71 #endif
65 72
66 #endif // __DEFINED__SkPdfUtils 73 #endif // SkPdfUtils_DEFINED
OLDNEW
« no previous file with comments | « experimental/PdfViewer/SkPdfGraphicsState.cpp ('k') | experimental/PdfViewer/SkPdfUtils.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698