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

Unified Diff: experimental/PdfViewer/SkPdfConfig.h

Issue 23020003: pdfviewer: debug code for drawText (show magenta background for text, to show text even when we fai… (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « experimental/PdfViewer/SkPdfBasics.cpp ('k') | experimental/PdfViewer/SkPdfFont.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/PdfViewer/SkPdfConfig.h
===================================================================
--- experimental/PdfViewer/SkPdfConfig.h (revision 10712)
+++ experimental/PdfViewer/SkPdfConfig.h (working copy)
@@ -3,38 +3,10 @@
//#define PDF_TRACE
//#define PDF_TRACE_READ_TOKEN
+//#define PDF_TRACE_DRAWTEXT
//#define PDF_TRACE_DIFF_IN_PNG
//#define PDF_DEBUG_NO_CLIPING
//#define PDF_DEBUG_NO_PAGE_CLIPING
//#define PDF_DEBUG_3X
-// TODO(edisonn): move in trace util.
-#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
-
-struct NotOwnedString {
- const unsigned char* fBuffer;
- 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);
-
- }
-};
-
#endif // __DEFINED__SkPdfConfig
« no previous file with comments | « experimental/PdfViewer/SkPdfBasics.cpp ('k') | experimental/PdfViewer/SkPdfFont.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698