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

Side by Side Diff: experimental/PdfViewer/inc/SkPdfContext.h

Issue 77763007: Move SkPdfContext into its own files. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 1 month 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
OLDNEW
(Empty)
1 /*
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 #include "SkMatrix.h"
9 #include "SkTDStackNester.h"
10 #include "SkPdfGraphicsState.h"
11
12 class SkPdfAllocator;
13 class SkPdfNativeDoc;
14 class SkPdfNativeObject;
15
16 /** \class SkPdfContext
17 * The context of the drawing. The document we draw from, the current stack of objects, ...
18 */
19 class SkPdfContext {
20 public:
21 SkTDStackNester<SkPdfNativeObject*> fObjectStack;
22 SkTDStackNester<SkPdfGraphicsState> fStateStack;
23 SkPdfGraphicsState fGraphicsState;
24 SkPdfNativeDoc* fPdfDoc;
25 SkPdfAllocator* fTmpPageAllocator;
26 SkMatrix fOriginalMatrix;
27
28 SkPdfContext(SkPdfNativeDoc* doc);
29 ~SkPdfContext();
30 };
OLDNEW
« no previous file with comments | « experimental/PdfViewer/SkPdfGraphicsState.cpp ('k') | experimental/PdfViewer/src/SkPdfContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698