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

Side by Side Diff: experimental/PdfViewer/SkPdfGraphicsState.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/SkPdfFont.cpp ('k') | experimental/PdfViewer/SkPdfGraphicsState.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__SkPdfBasics 1 /*
2 #define __DEFINED__SkPdfBasics 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 SkPdfGraphicsState_DEFINED
9 #define SkPdfGraphicsState_DEFINED
3 10
4 #include "SkCanvas.h" 11 #include "SkCanvas.h"
5 #include "SkPaint.h" 12 #include "SkPaint.h"
6 #include "SkPdfConfig.h" 13 #include "SkPdfConfig.h"
7 #include "SkPdfUtils.h" 14 #include "SkPdfUtils.h"
8 15
9 //#include "SkTDStack.h" 16 //#include "SkTDStack.h"
10 17
11 class SkPdfFont; 18 class SkPdfFont;
12 class SkPdfDoc; 19 class SkPdfDoc;
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 SkPdfGraphicsState fGraphicsState; 471 SkPdfGraphicsState fGraphicsState;
465 SkPdfNativeDoc* fPdfDoc; 472 SkPdfNativeDoc* fPdfDoc;
466 // TODO(edisonn): the allocator, could be freed after the page is done drawi ng. 473 // TODO(edisonn): the allocator, could be freed after the page is done drawi ng.
467 SkPdfAllocator* fTmpPageAllocator; 474 SkPdfAllocator* fTmpPageAllocator;
468 SkMatrix fOriginalMatrix; 475 SkMatrix fOriginalMatrix;
469 476
470 SkPdfContext(SkPdfNativeDoc* doc); 477 SkPdfContext(SkPdfNativeDoc* doc);
471 ~SkPdfContext(); 478 ~SkPdfContext();
472 }; 479 };
473 480
474 #endif // __DEFINED__SkPdfBasics 481 #endif // SkPdfGraphicsState_DEFINED
OLDNEW
« no previous file with comments | « experimental/PdfViewer/SkPdfFont.cpp ('k') | experimental/PdfViewer/SkPdfGraphicsState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698