pdfviewer: remove debug traces
Review URL: https://codereview.chromium.org/22284004 git-svn-id: http://skia.googlecode.com/svn/trunk@10551 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
d831ad28d3
commit
7e27bcd64a
@ -311,13 +311,6 @@ static bool readToken(SkPdfNativeTokenizer* fTokenizer, PdfToken* token) {
|
|||||||
out.appendf("/usr/local/google/home/edisonn/log_view2/step-%i-%s.png", gLastOpKeyword, gLastKeyword);
|
out.appendf("/usr/local/google/home/edisonn/log_view2/step-%i-%s.png", gLastOpKeyword, gLastKeyword);
|
||||||
SkImageEncoder::EncodeFile(out.c_str(), bitmap, SkImageEncoder::kPNG_Type, 100);
|
SkImageEncoder::EncodeFile(out.c_str(), bitmap, SkImageEncoder::kPNG_Type, 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (token->fType == kKeyword_TokenType) {
|
|
||||||
strcpy(gLastKeyword, token->fKeyword);
|
|
||||||
gLastOpKeyword = gReadOp;
|
|
||||||
} else {
|
|
||||||
strcpy(gLastKeyword, "");
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -932,7 +932,6 @@ bool SkPdfNativeTokenizer::readTokenCore(PdfToken* token) {
|
|||||||
SkPdfObject obj;
|
SkPdfObject obj;
|
||||||
#ifdef PDF_TRACE_READ_TOKEN
|
#ifdef PDF_TRACE_READ_TOKEN
|
||||||
static int read_op = 0;
|
static int read_op = 0;
|
||||||
int last;
|
|
||||||
#endif
|
#endif
|
||||||
token->fKeyword = NULL;
|
token->fKeyword = NULL;
|
||||||
token->fObject = NULL;
|
token->fObject = NULL;
|
||||||
@ -942,18 +941,7 @@ bool SkPdfNativeTokenizer::readTokenCore(PdfToken* token) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef PDF_TRACE_READ_TOKEN
|
|
||||||
printf("BEFORE the read: %i\n", read_op);
|
|
||||||
last = read_op;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
fUncompressedStream = nextObject(0, fUncompressedStream, fUncompressedStreamEnd, &obj, fAllocator, fDoc);
|
fUncompressedStream = nextObject(0, fUncompressedStream, fUncompressedStreamEnd, &obj, fAllocator, fDoc);
|
||||||
#ifdef PDF_TRACE_READ_TOKEN
|
|
||||||
printf("BEFORE the read: %i\n", read_op);
|
|
||||||
if (last != read_op) {
|
|
||||||
printf("break; // memory override");
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// If it is a keyword, we will only get the pointer of the string
|
// If it is a keyword, we will only get the pointer of the string
|
||||||
if (obj.type() == SkPdfObject::kKeyword_PdfObjectType) {
|
if (obj.type() == SkPdfObject::kKeyword_PdfObjectType) {
|
||||||
|
Loading…
Reference in New Issue
Block a user