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

Unified Diff: experimental/PdfViewer/SkPdfUtils.h

Issue 1266093003: Remove experimental/PdfViewer (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-03 (Monday) 10:43:56 EDT Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « experimental/PdfViewer/SkPdfReporter.cpp ('k') | experimental/PdfViewer/SkPdfUtils.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/PdfViewer/SkPdfUtils.h
diff --git a/experimental/PdfViewer/SkPdfUtils.h b/experimental/PdfViewer/SkPdfUtils.h
deleted file mode 100644
index 87ed4597dc591da82167a3ffd7dea90189e8e379..0000000000000000000000000000000000000000
--- a/experimental/PdfViewer/SkPdfUtils.h
+++ /dev/null
@@ -1,121 +0,0 @@
-/*
- * Copyright 2013 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef SkPdfUtils_DEFINED
-#define SkPdfUtils_DEFINED
-
-#include "SkMatrix.h"
-#include "SkRect.h"
-#include "SkPdfConfig.h"
-#include "SkString.h"
-
-class SkPdfArray;
-class SkPdfContext;
-class SkCanvas;
-class SkPdfNativeObject;
-
-// TODO(edisonn): temporary code, to report how much of the PDF we actually think we rendered.
-enum SkPdfResult {
- kOK_SkPdfResult,
- kPartial_SkPdfResult,
- kNYI_SkPdfResult,
- kIgnoreError_SkPdfResult,
- kError_SkPdfResult,
- kUnsupported_SkPdfResult,
-
- kCount_SkPdfResult
-};
-
-// In order to operate fast, when we parse the pdf, we try not to allocate many new strings,
-// and if possible we refer the string in the pdf stream.
-struct NotOwnedString {
- const unsigned char* fBuffer;
- // TODO(edisonn): clean up, the last two bytes are used to signal if compression is used
- size_t fBytes;
-
- static void init(NotOwnedString* str) {
- str->fBuffer = NULL;
- str->fBytes = 0;
- }
-
- static void init(NotOwnedString* str, const char* sz) {
- str->fBuffer = (const unsigned char*)sz;
- str->fBytes = strlen(sz);
- }
-
- bool equals(const char* sz) {
- return strncmp((const char*)fBuffer, sz, fBytes) == 0 && fBytes == strlen(sz);
-
- }
-};
-
-SkMatrix SkMatrixFromPdfMatrix(double array[6]);
-
-// TODO(edisonn): hack to make code generation simpler. Alternatively we can update the
-// generate_code.py not to rely on != operator
-bool operator !=(const SkString& first, const char* second);
-
-SkMatrix SkMatrixFromPdfArray(SkPdfArray* pdfArray);
-
-SkPdfResult doType3Char(SkPdfContext* pdfContext, SkCanvas* canvas, const SkPdfNativeObject* skobj,
- SkRect bBox, SkMatrix matrix, double textSize);
-
-////////////////////////////////////////////////////////////////////////////////////////////////////
-//
-// TRACE functions
-//
-#ifdef PDF_TRACE
-void SkTraceMatrix(const SkMatrix& matrix, const char* sz);
-void SkTraceRect(const SkRect& rect, const char* sz);
-#else
-#define SkTraceMatrix(a,b)
-#define SkTraceRect(a,b)
-#endif
-
-#ifdef PDF_TRACE_TOKENIZER
-
-static void TRACE_COMMENT(char ch) {
- printf("%c", ch);
-}
-
-static void TRACE_TK(char ch) {
- printf("%c", ch);
-}
-
-static void TRACE_NAME(const unsigned char* start, const unsigned char* end) {
- while (start < end) {
- printf("%c", *start);
- start++;
- }
- printf("\n");
-}
-
-static void TRACE_STRING(const unsigned char* start, const unsigned char* end) {
- while (start < end) {
- printf("%c", *start);
- start++;
- }
- printf("\n");
-}
-
-static void TRACE_HEXSTRING(const unsigned char* start, const unsigned char* end) {
- while (start < end) {
- printf("%c", *start);
- start++;
- }
- printf("\n");
-}
-
-#else
-#define TRACE_COMMENT(ch)
-#define TRACE_TK(ch)
-#define TRACE_NAME(start,end)
-#define TRACE_STRING(start,end)
-#define TRACE_HEXSTRING(start,end)
-#endif
-
-#endif // SkPdfUtils_DEFINED
« no previous file with comments | « experimental/PdfViewer/SkPdfReporter.cpp ('k') | experimental/PdfViewer/SkPdfUtils.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698