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

Side by Side Diff: experimental/PdfViewer/src/SkPdfContext.cpp

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
« no previous file with comments | « experimental/PdfViewer/inc/SkPdfContext.h ('k') | gyp/pdfviewer_lib.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "SkPdfContext.h"
9 #include "SkPdfNativeTokenizer.h"
10
11 SkPdfContext::SkPdfContext(SkPdfNativeDoc* doc)
12 : fPdfDoc(doc)
13 , fTmpPageAllocator(new SkPdfAllocator()) {
14 }
15
16 SkPdfContext::~SkPdfContext() {
17 delete fTmpPageAllocator;
18 }
OLDNEW
« no previous file with comments | « experimental/PdfViewer/inc/SkPdfContext.h ('k') | gyp/pdfviewer_lib.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698