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

Side by Side Diff: experimental/PdfViewer/pdfparser/native/SkPdfNativeTokenizer.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
OLDNEW
1 #ifndef EXPERIMENTAL_PDFVIEWER_PDFPARSER_NATIVE_SKPDFNATIVETOKENIZER_H_ 1 /*
2 #define EXPERIMENTAL_PDFVIEWER_PDFPARSER_NATIVE_SKPDFNATIVETOKENIZER_H_ 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 SkPdfNativeTokenizer_DEFINED
9 #define SkPdfNativeTokenizer_DEFINED
3 10
4 #include "SkTDArray.h" 11 #include "SkTDArray.h"
5 #include "SkTDict.h" 12 #include "SkTDict.h"
6 #include <math.h> 13 #include <math.h>
7 #include <string.h> 14 #include <string.h>
8 15
9 class SkPdfDictionary; 16 class SkPdfDictionary;
10 class SkPdfImageDictionary; 17 class SkPdfImageDictionary;
11 18
12 // White Spaces 19 // White Spaces
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 150
144 const unsigned char* fUncompressedStreamStart; 151 const unsigned char* fUncompressedStreamStart;
145 const unsigned char* fUncompressedStream; 152 const unsigned char* fUncompressedStream;
146 const unsigned char* fUncompressedStreamEnd; 153 const unsigned char* fUncompressedStreamEnd;
147 154
148 bool fEmpty; 155 bool fEmpty;
149 bool fHasPutBack; 156 bool fHasPutBack;
150 PdfToken fPutBack; 157 PdfToken fPutBack;
151 }; 158 };
152 159
153 #endif // EXPERIMENTAL_PDFVIEWER_PDFPARSER_NATIVE_SKPDFNATIVETOKENIZER_H_ 160 #endif // SkPdfNativeTokenizer_DEFINED
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698