more work on pdf fonts, more to come
Review URL: https://codereview.chromium.org/18117005
git-svn-id: http://skia.googlecode.com/svn/trunk@9796 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/PdfViewer/SkPdfFont.cpp b/experimental/PdfViewer/SkPdfFont.cpp
index 42c8056..8170453 100644
--- a/experimental/PdfViewer/SkPdfFont.cpp
+++ b/experimental/PdfViewer/SkPdfFont.cpp
@@ -148,49 +148,51 @@
return typeface;
}
-static SkPdfFont* fontFromFontDescriptor(SkPdfFontDescriptorDictionary* fd) {
+SkPdfFont* SkPdfFont::fontFromFontDescriptor(SkPdfFontDescriptorDictionary* fd, bool loadFromName) {
+ // TODO(edisonn): partial implementation
// Only one, at most be available
+ SkPdfStream* pdfStream = NULL;
if (fd->has_FontFile()) {
-
+ pdfStream = fd->FontFile();
} else if (fd->has_FontFile2()) {
- SkPdfStream* pdfStream = fd->FontFile2();
-
- if (!pdfStream->podofo()->GetStream()) {
- // TODO(edisonn): report warning to be used in testing.
- return NULL;
- }
-
- char* uncompressedStream = NULL;
- pdf_long uncompressedStreamLength = 0;
-
- // TODO(edisonn): get rid of try/catch exceptions! We should not throw on user data!
- try {
- pdfStream->podofo()->GetStream()->GetFilteredCopy(&uncompressedStream, &uncompressedStreamLength);
- } catch (PdfError& e) {
- // TODO(edisonn): report warning to be used in testing.
- return NULL;
- }
- SkMemoryStream* skStream = new SkMemoryStream(uncompressedStream, uncompressedStreamLength);
- SkTypeface* face = SkTypeface::CreateFromStream(skStream);
-
- if (face == NULL) {
- // TODO(edisonn): report warning to be used in testing.
- return NULL;
- }
-
- face->ref();
-
- return new SkPdfStandardFont(face);
+ pdfStream = fd->FontFile2();
} if (fd->has_FontFile3()) {
-
+ pdfStream = fd->FontFile3();
} else {
-
+ if (loadFromName) {
+ return fontFromName(fd, fd->FontName().c_str());
+ }
}
- return NULL;
+ if (!pdfStream || !pdfStream->podofo()->GetStream()) {
+ // TODO(edisonn): report warning to be used in testing.
+ return NULL;
+ }
+
+ char* uncompressedStream = NULL;
+ pdf_long uncompressedStreamLength = 0;
+
+ // TODO(edisonn): get rid of try/catch exceptions! We should not throw on user data!
+ try {
+ pdfStream->podofo()->GetStream()->GetFilteredCopy(&uncompressedStream, &uncompressedStreamLength);
+ } catch (PdfError& e) {
+ // TODO(edisonn): report warning to be used in testing.
+ return NULL;
+ }
+ SkMemoryStream* skStream = new SkMemoryStream(uncompressedStream, uncompressedStreamLength);
+ SkTypeface* face = SkTypeface::CreateFromStream(skStream);
+
+ if (face == NULL) {
+ // TODO(edisonn): report warning to be used in testing.
+ return NULL;
+ }
+
+ face->ref();
+
+ return new SkPdfStandardFont(face);
}
-SkPdfFont* SkPdfFontFromName(SkPdfObject* obj, const char* fontName) {
+SkPdfFont* fontFromName(SkPdfObject* obj, const char* fontName) {
SkTypeface* typeface = SkTypefaceFromPdfStandardFont(fontName, false, false);
if (typeface != NULL) {
return new SkPdfStandardFont(typeface);
@@ -203,7 +205,7 @@
SkPdfFontDescriptorDictionary* fd = NULL;
if (mapFontDescriptorDictionary(*obj->doc(), *podofoFont, &fd)) {
if (fd->has_FontName() && fd->FontName() == fontName) {
- SkPdfFont* font = fontFromFontDescriptor(fd);
+ SkPdfFont* font = SkPdfFont::fontFromFontDescriptor(fd, false);
if (font) {
return font;
} else {
@@ -233,9 +235,6 @@
case kType1FontDictionary_SkPdfObjectType:
return fontFromType1FontDictionary(dict->asType1FontDictionary());
- case kCIDFontDictionary_SkPdfObjectType:
- return fontFromCIDFontDictionary(dict->asCIDFontDictionary());
-
case kMultiMasterFontDictionary_SkPdfObjectType:
return fontFromMultiMasterFontDictionary(dict->asMultiMasterFontDictionary());
@@ -279,14 +278,6 @@
return new SkPdfTrueTypeFont(dict);
}
-SkPdfCIDFont* SkPdfFont::fontFromCIDFontDictionary(SkPdfCIDFontDictionary* dict) {
- if (dict == NULL) {
- return NULL; // default one?
- }
-
- return new SkPdfCIDFont(dict);
-}
-
SkPdfMultiMasterFont* SkPdfFont::fontFromMultiMasterFontDictionary(SkPdfMultiMasterFontDictionary* dict) {
if (dict == NULL) {
return NULL; // default one?
@@ -396,7 +387,7 @@
SkPdfType0Font::SkPdfType0Font(SkPdfType0FontDictionary* dict) {
- fBaseFont = SkPdfFontFromName(dict, dict->BaseFont().c_str());
+ fBaseFont = fontFromName(dict, dict->BaseFont().c_str());
fEncoding = NULL;
if (dict->has_Encoding()) {
diff --git a/experimental/PdfViewer/SkPdfFont.h b/experimental/PdfViewer/SkPdfFont.h
index 85b9fc4..90fe3b0 100644
--- a/experimental/PdfViewer/SkPdfFont.h
+++ b/experimental/PdfViewer/SkPdfFont.h
@@ -17,7 +17,6 @@
class SkPdfType1Font;
class SkPdfType3Font;
class SkPdfTrueTypeFont;
-class SkPdfCIDFont;
class SkPdfMultiMasterFont;
class SkPdfFont;
@@ -30,7 +29,7 @@
std::map<std::string, SkPdfStandardFontEntry>& getStandardFonts();
SkTypeface* SkTypefaceFromPdfStandardFont(const char* fontName, bool bold, bool italic);
-SkPdfFont* SkPdfFontFromName(SkPdfObject* obj, const char* fontName);
+SkPdfFont* fontFromName(SkPdfObject* obj, const char* fontName);
struct SkUnencodedText {
void* text;
@@ -100,6 +99,28 @@
}
};
+// TODO(edisonn): using this one when no encoding is specified
+class SkPdfDefaultEncoding : public SkPdfEncoding {
+public:
+ virtual bool decodeText(const SkUnencodedText& textIn, SkDecodedText* textOut) const {
+ // TODO(edisonn): SkASSERT(textIn.len % 2 == 0); or report error?
+
+ unsigned char* text = (unsigned char*)textIn.text;
+ textOut->text = new uint16_t[textIn.len];
+ textOut->len = textIn.len;
+
+ for (int i = 0; i < textOut->len; i++) {
+ textOut->text[i] = text[i];
+ }
+
+ return true;
+ }
+
+ static SkPdfDefaultEncoding* instance() {
+ static SkPdfDefaultEncoding* inst = new SkPdfDefaultEncoding();
+ return inst;
+ }
+};
class SkPdfCIDToGIDMapIdentityEncoding : public SkPdfEncoding {
public:
@@ -131,13 +152,15 @@
public:
- SkPdfFont() : fBaseFont(NULL), fEncoding(NULL), fToUnicode(NULL) {}
+ SkPdfFont() : fBaseFont(NULL), fEncoding(SkPdfDefaultEncoding::instance()), fToUnicode(NULL) {}
const SkPdfEncoding* encoding() const {return fEncoding;}
- void drawText(const SkDecodedText& text, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas, SkMatrix* matrix) {
+ void drawText(const SkDecodedText& text, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas) {
for (int i = 0 ; i < text.size(); i++) {
- drawOneChar(text[i], paint, pdfContext, canvas, matrix);
+ double width = drawOneChar(text[i], paint, pdfContext, canvas);
+ pdfContext->fGraphicsState.fMatrixTm.preTranslate(SkDoubleToScalar(width), SkDoubleToScalar(0.0));
+ canvas->translate(SkDoubleToScalar(width), SkDoubleToScalar(0.0));
}
}
@@ -163,18 +186,18 @@
};
static SkPdfFont* fontFromPdfDictionary(SkPdfFontDictionary* dict);
- static SkPdfFont* Default() {return SkPdfFontFromName(NULL, "TimesNewRoman");}
+ static SkPdfFont* Default() {return fontFromName(NULL, "TimesNewRoman");}
static SkPdfType0Font* fontFromType0FontDictionary(SkPdfType0FontDictionary* dict);
static SkPdfType1Font* fontFromType1FontDictionary(SkPdfType1FontDictionary* dict);
static SkPdfType3Font* fontFromType3FontDictionary(SkPdfType3FontDictionary* dict);
static SkPdfTrueTypeFont* fontFromTrueTypeFontDictionary(SkPdfTrueTypeFontDictionary* dict);
- static SkPdfCIDFont* fontFromCIDFontDictionary(SkPdfCIDFontDictionary* dict);
static SkPdfMultiMasterFont* fontFromMultiMasterFontDictionary(SkPdfMultiMasterFontDictionary* dict);
+ static SkPdfFont* fontFromFontDescriptor(SkPdfFontDescriptorDictionary* fd, bool loadFromName = true);
+
public:
- virtual void drawOneChar(unsigned int ch, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas, SkMatrix* matrix) = 0;
- virtual void afterChar(SkPaint* paint, SkMatrix* matrix) = 0;
+ virtual double drawOneChar(unsigned int ch, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas) = 0;
virtual void afterWord(SkPaint* paint, SkMatrix* matrix) = 0;
};
@@ -185,7 +208,7 @@
SkPdfStandardFont(SkTypeface* typeface) : fTypeface(typeface) {}
public:
- virtual void drawOneChar(unsigned int ch, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas, SkMatrix* matrix) {
+ virtual double drawOneChar(unsigned int ch, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas) {
paint->setTypeface(fTypeface);
paint->setTextEncoding(SkPaint::kUTF8_TextEncoding);
@@ -196,10 +219,9 @@
canvas->drawText(utf8, len, SkDoubleToScalar(0), SkDoubleToScalar(0), *paint);
SkScalar textWidth = paint->measureText(utf8, len);
- matrix->preTranslate(textWidth, SkDoubleToScalar(0.0));
+ return SkScalarToDouble(textWidth);
}
- virtual void afterChar(SkPaint* paint, SkMatrix* matrix) {}
virtual void afterWord(SkPaint* paint, SkMatrix* matrix) {}
};
@@ -209,98 +231,43 @@
public:
- virtual void drawOneChar(unsigned int ch, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas, SkMatrix* matrix) {
- fBaseFont->drawOneChar(ToUnicode(ch), paint, pdfContext, canvas, matrix);
- }
-
- virtual void afterChar(SkPaint* paint, SkMatrix* matrix) {
-
+ virtual double drawOneChar(unsigned int ch, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas) {
+ return fBaseFont->drawOneChar(ToUnicode(ch), paint, pdfContext, canvas);
}
virtual void afterWord(SkPaint* paint, SkMatrix* matrix) {
}
};
-class SkPdfTrueTypeFont : public SkPdfFont {
-public:
- SkPdfTrueTypeFont(SkPdfTrueTypeFontDictionary* dict) {
- fBaseFont = SkPdfFontFromName(dict, dict->BaseFont().c_str());
- }
-
-public:
- virtual void drawOneChar(unsigned int ch, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas, SkMatrix* matrix) {
-
- }
-
- virtual void afterChar(SkPaint* paint, SkMatrix* matrix) {
-
- }
-
- virtual void afterWord(SkPaint* paint, SkMatrix* matrix) {
-
- }
-};
-
-
class SkPdfType1Font : public SkPdfFont {
public:
SkPdfType1Font(SkPdfType1FontDictionary* dict) {
- fBaseFont = SkPdfFontFromName(dict, dict->BaseFont().c_str());
+ if (dict->has_FontDescriptor()) {
+ fBaseFont = SkPdfFont::fontFromFontDescriptor(dict->FontDescriptor());
+ } else {
+ fBaseFont = fontFromName(dict, dict->BaseFont().c_str());
+ }
}
-
public:
- virtual void drawOneChar(unsigned int ch, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas, SkMatrix* matrix) {
-
- }
-
- virtual void afterChar(SkPaint* paint, SkMatrix* matrix) {
-
+ virtual double drawOneChar(unsigned int ch, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas) {
+ return fBaseFont->drawOneChar(ToUnicode(ch), paint, pdfContext, canvas);
}
virtual void afterWord(SkPaint* paint, SkMatrix* matrix) {
}
- };
+};
-
-class SkPdfCIDFont : public SkPdfFont {
+class SkPdfTrueTypeFont : public SkPdfType1Font {
public:
- SkPdfCIDFont(SkPdfCIDFontDictionary* dict) {
- fBaseFont = SkPdfFontFromName(dict, dict->BaseFont().c_str());
- }
-
-public:
- virtual void drawOneChar(unsigned int ch, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas, SkMatrix* matrix) {
-
- }
-
- virtual void afterChar(SkPaint* paint, SkMatrix* matrix) {
-
- }
-
- virtual void afterWord(SkPaint* paint, SkMatrix* matrix) {
-
+ SkPdfTrueTypeFont(SkPdfTrueTypeFontDictionary* dict) : SkPdfType1Font(dict) {
}
};
-class SkPdfMultiMasterFont : public SkPdfFont {
+class SkPdfMultiMasterFont : public SkPdfType1Font {
public:
- SkPdfMultiMasterFont(SkPdfMultiMasterFontDictionary* dict) {
- fBaseFont = SkPdfFontFromName(dict, dict->BaseFont().c_str());
- }
-
-public:
- virtual void drawOneChar(unsigned int ch, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas, SkMatrix* matrix) {
-
- }
-
- virtual void afterChar(SkPaint* paint, SkMatrix* matrix) {
-
- }
-
- virtual void afterWord(SkPaint* paint, SkMatrix* matrix) {
-
+ SkPdfMultiMasterFont(SkPdfMultiMasterFontDictionary* dict) : SkPdfType1Font(dict) {
}
};
/*
@@ -351,7 +318,7 @@
public:
SkPdfType3Font(SkPdfType3FontDictionary* dict) {
- fBaseFont = SkPdfFontFromName(dict, dict->BaseFont().c_str());
+ fBaseFont = fontFromName(dict, dict->BaseFont().c_str());
if (dict->has_Encoding()) {
if (dict->isEncodingAName()) {
@@ -410,10 +377,9 @@
}
public:
- virtual void drawOneChar(unsigned int ch, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas, SkMatrix* matrix) {
+ virtual double drawOneChar(unsigned int ch, SkPaint* paint, PdfContext* pdfContext, SkCanvas* canvas) {
if (ch < fFirstChar || ch > fLastChar || !fChars[ch - fFirstChar].fObj) {
- fBaseFont->drawOneChar(ToUnicode(ch), paint, pdfContext, canvas, matrix);
- return;
+ return fBaseFont->drawOneChar(ToUnicode(ch), paint, pdfContext, canvas);
}
#ifdef PDF_TRACE
@@ -424,9 +390,10 @@
#endif
doType3Char(pdfContext, canvas, fChars[ch - fFirstChar].fObj, fFontBBox, fFonMatrix, pdfContext->fGraphicsState.fCurFontSize);
- }
- virtual void afterChar(SkPaint* paint, SkMatrix* matrix) {
+ // TODO(edisonn): verify/test translate code, not tested yet
+ pdfContext->fGraphicsState.fMatrixTm.preTranslate(SkDoubleToScalar(pdfContext->fGraphicsState.fCurFontSize * fChars[ch - fFirstChar].fWidth),
+ SkDoubleToScalar(0.0));
}
virtual void afterWord(SkPaint* paint, SkMatrix* matrix) {
diff --git a/experimental/PdfViewer/SkPdfParser.cpp b/experimental/PdfViewer/SkPdfParser.cpp
index 0a6c6e6..94dd5dd 100644
--- a/experimental/PdfViewer/SkPdfParser.cpp
+++ b/experimental/PdfViewer/SkPdfParser.cpp
@@ -34,6 +34,8 @@
// TODO(edisonn): security - validate all the user input, all pdf!
+// TODO(edisonn): put drawtext in #ifdefs, so comparations will ignore minor changes in text positioning and font
+// this way, we look more at other features and layout in diffs
#include "SkPdfHeaders_autogen.h"
#include "SkPdfPodofoMapper_autogen.h"
@@ -386,7 +388,7 @@
SkTraceMatrix(matrix, "mirrored");
#endif
- skfont->drawText(decoded, &paint, pdfContext, canvas, &pdfContext->fGraphicsState.fMatrixTm);
+ skfont->drawText(decoded, &paint, pdfContext, canvas);
canvas->restore();
return kPartial_PdfResult;
@@ -2334,7 +2336,14 @@
doc.drawPage(pn, &canvas);
SkString out;
- out.appendf("%s-%i.png", inputFileName.c_str(), pn);
+ if (doc.pages() > 1) {
+ out.appendf("%s-%i.png", inputFileName.c_str(), pn);
+ } else {
+ out = inputFileName;
+ // .pdf -> .png
+ out[out.size() - 2] = 'n';
+ out[out.size() - 1] = 'g';
+ }
SkImageEncoder::EncodeFile(out.c_str(), bitmap, SkImageEncoder::kPNG_Type, 100);
}
return true;
diff --git a/experimental/PdfViewer/autogen/SkPdfALinkAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfALinkAnnotationDictionary_autogen.cpp
index ee5def7..38d8fb8 100644
--- a/experimental/PdfViewer/autogen/SkPdfALinkAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfALinkAnnotationDictionary_autogen.cpp
@@ -48,3 +48,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfALinkAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfALinkAnnotationDictionary_autogen.h
index e2ba74e..70e7a5e 100644
--- a/experimental/PdfViewer/autogen/SkPdfALinkAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfALinkAnnotationDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfActionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfActionDictionary_autogen.cpp
index 9080dc1..ed91efc 100644
--- a/experimental/PdfViewer/autogen/SkPdfActionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfActionDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfActionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfActionDictionary_autogen.h
index 56f648e..2ff141a 100644
--- a/experimental/PdfViewer/autogen/SkPdfActionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfActionDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfAlternateImageDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfAlternateImageDictionary_autogen.cpp
index f9d87a2..3d262e4 100644
--- a/experimental/PdfViewer/autogen/SkPdfAlternateImageDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfAlternateImageDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return false;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfAlternateImageDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfAlternateImageDictionary_autogen.h
index 4e9b886..0dccdef 100644
--- a/experimental/PdfViewer/autogen/SkPdfAlternateImageDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfAlternateImageDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfAnnotationActionsDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfAnnotationActionsDictionary_autogen.cpp
index 9ed1acd..183dbd1 100644
--- a/experimental/PdfViewer/autogen/SkPdfAnnotationActionsDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfAnnotationActionsDictionary_autogen.cpp
@@ -41,3 +41,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfAnnotationActionsDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfAnnotationActionsDictionary_autogen.h
index 9ded5ee..b5c2a69 100644
--- a/experimental/PdfViewer/autogen/SkPdfAnnotationActionsDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfAnnotationActionsDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfAnnotationDictionary_autogen.cpp
index 422dbe5..0e29966 100644
--- a/experimental/PdfViewer/autogen/SkPdfAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfAnnotationDictionary_autogen.cpp
@@ -132,3 +132,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfAnnotationDictionary_autogen.h
index 9b7f08a..b5a800a 100644
--- a/experimental/PdfViewer/autogen/SkPdfAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfAnnotationDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfAppearanceCharacteristicsDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfAppearanceCharacteristicsDictionary_autogen.cpp
index 504f1ab..96b6b4e 100644
--- a/experimental/PdfViewer/autogen/SkPdfAppearanceCharacteristicsDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfAppearanceCharacteristicsDictionary_autogen.cpp
@@ -76,3 +76,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfAppearanceCharacteristicsDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfAppearanceCharacteristicsDictionary_autogen.h
index a3814a6..ab59a69 100644
--- a/experimental/PdfViewer/autogen/SkPdfAppearanceCharacteristicsDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfAppearanceCharacteristicsDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfAppearanceDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfAppearanceDictionary_autogen.cpp
index fbfc46e..54ba878 100644
--- a/experimental/PdfViewer/autogen/SkPdfAppearanceDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfAppearanceDictionary_autogen.cpp
@@ -41,3 +41,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfAppearanceDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfAppearanceDictionary_autogen.h
index 3e8782b..7bf9e7b 100644
--- a/experimental/PdfViewer/autogen/SkPdfAppearanceDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfAppearanceDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfApplicationDataDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfApplicationDataDictionary_autogen.cpp
index cada2fc..ff3a3a1 100644
--- a/experimental/PdfViewer/autogen/SkPdfApplicationDataDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfApplicationDataDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfApplicationDataDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfApplicationDataDictionary_autogen.h
index e82ecc3..d9ba85f 100644
--- a/experimental/PdfViewer/autogen/SkPdfApplicationDataDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfApplicationDataDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfArray_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfArray_autogen.cpp
index d27e5a2..fd25276 100644
--- a/experimental/PdfViewer/autogen/SkPdfArray_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfArray_autogen.cpp
@@ -1 +1,2 @@
#include "SkPdfArray_autogen.h"
+
diff --git a/experimental/PdfViewer/autogen/SkPdfArray_autogen.h b/experimental/PdfViewer/autogen/SkPdfArray_autogen.h
index 3c34cea..ec7874b 100644
--- a/experimental/PdfViewer/autogen/SkPdfArray_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfArray_autogen.h
@@ -69,6 +69,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -168,9 +171,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfArtifactsDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfArtifactsDictionary_autogen.cpp
index 59bc9d5..bac501d 100644
--- a/experimental/PdfViewer/autogen/SkPdfArtifactsDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfArtifactsDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfArtifactsDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfArtifactsDictionary_autogen.h
index d63a649..cb753b7 100644
--- a/experimental/PdfViewer/autogen/SkPdfArtifactsDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfArtifactsDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfAttributeObjectDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfAttributeObjectDictionary_autogen.cpp
index ca2c10a..7810f46 100644
--- a/experimental/PdfViewer/autogen/SkPdfAttributeObjectDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfAttributeObjectDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfAttributeObjectDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfAttributeObjectDictionary_autogen.h
index 6c07fa8..a45f01c 100644
--- a/experimental/PdfViewer/autogen/SkPdfAttributeObjectDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfAttributeObjectDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfBeadDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfBeadDictionary_autogen.cpp
index 440a93e..69c6b07 100644
--- a/experimental/PdfViewer/autogen/SkPdfBeadDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfBeadDictionary_autogen.cpp
@@ -41,3 +41,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfBeadDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfBeadDictionary_autogen.h
index 24611f7..bc9cccf 100644
--- a/experimental/PdfViewer/autogen/SkPdfBeadDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfBeadDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfBlockLevelStructureElementsDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfBlockLevelStructureElementsDictionary_autogen.cpp
index bbf43bc..720eaca 100644
--- a/experimental/PdfViewer/autogen/SkPdfBlockLevelStructureElementsDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfBlockLevelStructureElementsDictionary_autogen.cpp
@@ -90,3 +90,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfBlockLevelStructureElementsDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfBlockLevelStructureElementsDictionary_autogen.h
index 777911a..01f78fb 100644
--- a/experimental/PdfViewer/autogen/SkPdfBlockLevelStructureElementsDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfBlockLevelStructureElementsDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfBoolean_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfBoolean_autogen.cpp
index 14860e0..1528b04 100644
--- a/experimental/PdfViewer/autogen/SkPdfBoolean_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfBoolean_autogen.cpp
@@ -1 +1,2 @@
#include "SkPdfBoolean_autogen.h"
+
diff --git a/experimental/PdfViewer/autogen/SkPdfBoolean_autogen.h b/experimental/PdfViewer/autogen/SkPdfBoolean_autogen.h
index 1a0ba84..e0b57e4 100644
--- a/experimental/PdfViewer/autogen/SkPdfBoolean_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfBoolean_autogen.h
@@ -69,6 +69,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -168,9 +171,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfBorderStyleDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfBorderStyleDictionary_autogen.cpp
index 482287d..f26588a 100644
--- a/experimental/PdfViewer/autogen/SkPdfBorderStyleDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfBorderStyleDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfBorderStyleDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfBorderStyleDictionary_autogen.h
index e4d66b9..eb15785 100644
--- a/experimental/PdfViewer/autogen/SkPdfBorderStyleDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfBorderStyleDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfBoxColorInformationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfBoxColorInformationDictionary_autogen.cpp
index 063b6fa..7ce6524 100644
--- a/experimental/PdfViewer/autogen/SkPdfBoxColorInformationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfBoxColorInformationDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfBoxColorInformationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfBoxColorInformationDictionary_autogen.h
index bd28198..2021914 100644
--- a/experimental/PdfViewer/autogen/SkPdfBoxColorInformationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfBoxColorInformationDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfBoxStyleDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfBoxStyleDictionary_autogen.cpp
index 9f29d0f..d2dccef 100644
--- a/experimental/PdfViewer/autogen/SkPdfBoxStyleDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfBoxStyleDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfBoxStyleDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfBoxStyleDictionary_autogen.h
index 92d2b5a..04310d5 100644
--- a/experimental/PdfViewer/autogen/SkPdfBoxStyleDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfBoxStyleDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfCIDFontDescriptorDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfCIDFontDescriptorDictionary_autogen.cpp
index bb4c5b8..56ece28 100644
--- a/experimental/PdfViewer/autogen/SkPdfCIDFontDescriptorDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfCIDFontDescriptorDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfCIDFontDescriptorDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfCIDFontDescriptorDictionary_autogen.h
index f544eaa..70218d9 100644
--- a/experimental/PdfViewer/autogen/SkPdfCIDFontDescriptorDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfCIDFontDescriptorDictionary_autogen.h
@@ -61,6 +61,9 @@
virtual SkPdfBoxStyleDictionary* asBoxStyleDictionary() {return NULL;}
virtual const SkPdfBoxStyleDictionary* asBoxStyleDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfCIDFontDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfCIDFontDictionary_autogen.cpp
index 1f7d27a..2c5d9f9 100644
--- a/experimental/PdfViewer/autogen/SkPdfCIDFontDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfCIDFontDictionary_autogen.cpp
@@ -28,9 +28,9 @@
return NULL;
}
-SkPdfDictionary* SkPdfCIDFontDictionary::FontDescriptor() const {
- SkPdfDictionary* ret;
- if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "FontDescriptor", "", &ret)) return ret;
+SkPdfFontDescriptorDictionary* SkPdfCIDFontDictionary::FontDescriptor() const {
+ SkPdfFontDescriptorDictionary* ret;
+ if (FontDescriptorDictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "FontDescriptor", "", &ret)) return ret;
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
@@ -76,3 +76,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfCIDFontDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfCIDFontDictionary_autogen.h
index 1ebc2ee..88996a8 100644
--- a/experimental/PdfViewer/autogen/SkPdfCIDFontDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfCIDFontDictionary_autogen.h
@@ -4,10 +4,10 @@
#include "SkPdfUtils.h"
#include "SkPdfEnums_autogen.h"
#include "SkPdfArray_autogen.h"
-#include "SkPdfFontDictionary_autogen.h"
+#include "SkPdfDictionary_autogen.h"
// Entries in a CIDFont dictionary
-class SkPdfCIDFontDictionary : public SkPdfFontDictionary {
+class SkPdfCIDFontDictionary : public SkPdfDictionary {
public:
virtual SkPdfObjectType getType() const { return kCIDFontDictionary_SkPdfObjectType;}
virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kCIDFontDictionary_SkPdfObjectType + 1);}
@@ -16,6 +16,153 @@
virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return this;}
private:
+ virtual SkPdfALinkAnnotationDictionary* asALinkAnnotationDictionary() {return NULL;}
+ virtual const SkPdfALinkAnnotationDictionary* asALinkAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfActionDictionary* asActionDictionary() {return NULL;}
+ virtual const SkPdfActionDictionary* asActionDictionary() const {return NULL;}
+
+ virtual SkPdfAlternateImageDictionary* asAlternateImageDictionary() {return NULL;}
+ virtual const SkPdfAlternateImageDictionary* asAlternateImageDictionary() const {return NULL;}
+
+ virtual SkPdfAnnotationActionsDictionary* asAnnotationActionsDictionary() {return NULL;}
+ virtual const SkPdfAnnotationActionsDictionary* asAnnotationActionsDictionary() const {return NULL;}
+
+ virtual SkPdfAnnotationDictionary* asAnnotationDictionary() {return NULL;}
+ virtual const SkPdfAnnotationDictionary* asAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfAppearanceCharacteristicsDictionary* asAppearanceCharacteristicsDictionary() {return NULL;}
+ virtual const SkPdfAppearanceCharacteristicsDictionary* asAppearanceCharacteristicsDictionary() const {return NULL;}
+
+ virtual SkPdfAppearanceDictionary* asAppearanceDictionary() {return NULL;}
+ virtual const SkPdfAppearanceDictionary* asAppearanceDictionary() const {return NULL;}
+
+ virtual SkPdfApplicationDataDictionary* asApplicationDataDictionary() {return NULL;}
+ virtual const SkPdfApplicationDataDictionary* asApplicationDataDictionary() const {return NULL;}
+
+ virtual SkPdfArtifactsDictionary* asArtifactsDictionary() {return NULL;}
+ virtual const SkPdfArtifactsDictionary* asArtifactsDictionary() const {return NULL;}
+
+ virtual SkPdfAttributeObjectDictionary* asAttributeObjectDictionary() {return NULL;}
+ virtual const SkPdfAttributeObjectDictionary* asAttributeObjectDictionary() const {return NULL;}
+
+ virtual SkPdfBeadDictionary* asBeadDictionary() {return NULL;}
+ virtual const SkPdfBeadDictionary* asBeadDictionary() const {return NULL;}
+
+ virtual SkPdfBlockLevelStructureElementsDictionary* asBlockLevelStructureElementsDictionary() {return NULL;}
+ virtual const SkPdfBlockLevelStructureElementsDictionary* asBlockLevelStructureElementsDictionary() const {return NULL;}
+
+ virtual SkPdfBorderStyleDictionary* asBorderStyleDictionary() {return NULL;}
+ virtual const SkPdfBorderStyleDictionary* asBorderStyleDictionary() const {return NULL;}
+
+ virtual SkPdfBoxColorInformationDictionary* asBoxColorInformationDictionary() {return NULL;}
+ virtual const SkPdfBoxColorInformationDictionary* asBoxColorInformationDictionary() const {return NULL;}
+
+ virtual SkPdfBoxStyleDictionary* asBoxStyleDictionary() {return NULL;}
+ virtual const SkPdfBoxStyleDictionary* asBoxStyleDictionary() const {return NULL;}
+
+ virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+
+ virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
+ virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
+
+ virtual SkPdfCMapDictionary* asCMapDictionary() {return NULL;}
+ virtual const SkPdfCMapDictionary* asCMapDictionary() const {return NULL;}
+
+ virtual SkPdfCalgrayColorSpaceDictionary* asCalgrayColorSpaceDictionary() {return NULL;}
+ virtual const SkPdfCalgrayColorSpaceDictionary* asCalgrayColorSpaceDictionary() const {return NULL;}
+
+ virtual SkPdfCalrgbColorSpaceDictionary* asCalrgbColorSpaceDictionary() {return NULL;}
+ virtual const SkPdfCalrgbColorSpaceDictionary* asCalrgbColorSpaceDictionary() const {return NULL;}
+
+ virtual SkPdfCatalogDictionary* asCatalogDictionary() {return NULL;}
+ virtual const SkPdfCatalogDictionary* asCatalogDictionary() const {return NULL;}
+
+ virtual SkPdfCcittfaxdecodeFilterDictionary* asCcittfaxdecodeFilterDictionary() {return NULL;}
+ virtual const SkPdfCcittfaxdecodeFilterDictionary* asCcittfaxdecodeFilterDictionary() const {return NULL;}
+
+ virtual SkPdfCheckboxFieldDictionary* asCheckboxFieldDictionary() {return NULL;}
+ virtual const SkPdfCheckboxFieldDictionary* asCheckboxFieldDictionary() const {return NULL;}
+
+ virtual SkPdfChoiceFieldDictionary* asChoiceFieldDictionary() {return NULL;}
+ virtual const SkPdfChoiceFieldDictionary* asChoiceFieldDictionary() const {return NULL;}
+
+ virtual SkPdfComponentsWithMetadataDictionary* asComponentsWithMetadataDictionary() {return NULL;}
+ virtual const SkPdfComponentsWithMetadataDictionary* asComponentsWithMetadataDictionary() const {return NULL;}
+
+ virtual SkPdfDctdecodeFilterDictionary* asDctdecodeFilterDictionary() {return NULL;}
+ virtual const SkPdfDctdecodeFilterDictionary* asDctdecodeFilterDictionary() const {return NULL;}
+
+ virtual SkPdfDeviceNColorSpaceDictionary* asDeviceNColorSpaceDictionary() {return NULL;}
+ virtual const SkPdfDeviceNColorSpaceDictionary* asDeviceNColorSpaceDictionary() const {return NULL;}
+
+ virtual SkPdfDocumentCatalogActionsDictionary* asDocumentCatalogActionsDictionary() {return NULL;}
+ virtual const SkPdfDocumentCatalogActionsDictionary* asDocumentCatalogActionsDictionary() const {return NULL;}
+
+ virtual SkPdfDocumentInformationDictionary* asDocumentInformationDictionary() {return NULL;}
+ virtual const SkPdfDocumentInformationDictionary* asDocumentInformationDictionary() const {return NULL;}
+
+ virtual SkPdfEmbeddedFileParameterDictionary* asEmbeddedFileParameterDictionary() {return NULL;}
+ virtual const SkPdfEmbeddedFileParameterDictionary* asEmbeddedFileParameterDictionary() const {return NULL;}
+
+ virtual SkPdfEmbeddedFileStreamDictionary* asEmbeddedFileStreamDictionary() {return NULL;}
+ virtual const SkPdfEmbeddedFileStreamDictionary* asEmbeddedFileStreamDictionary() const {return NULL;}
+
+ virtual SkPdfEmbeddedFontStreamDictionary* asEmbeddedFontStreamDictionary() {return NULL;}
+ virtual const SkPdfEmbeddedFontStreamDictionary* asEmbeddedFontStreamDictionary() const {return NULL;}
+
+ virtual SkPdfEncodingDictionary* asEncodingDictionary() {return NULL;}
+ virtual const SkPdfEncodingDictionary* asEncodingDictionary() const {return NULL;}
+
+ virtual SkPdfEncryptedEmbeddedFileStreamDictionary* asEncryptedEmbeddedFileStreamDictionary() {return NULL;}
+ virtual const SkPdfEncryptedEmbeddedFileStreamDictionary* asEncryptedEmbeddedFileStreamDictionary() const {return NULL;}
+
+ virtual SkPdfEncryptionCommonDictionary* asEncryptionCommonDictionary() {return NULL;}
+ virtual const SkPdfEncryptionCommonDictionary* asEncryptionCommonDictionary() const {return NULL;}
+
+ virtual SkPdfFDFCatalogDictionary* asFDFCatalogDictionary() {return NULL;}
+ virtual const SkPdfFDFCatalogDictionary* asFDFCatalogDictionary() const {return NULL;}
+
+ virtual SkPdfFDFDictionary* asFDFDictionary() {return NULL;}
+ virtual const SkPdfFDFDictionary* asFDFDictionary() const {return NULL;}
+
+ virtual SkPdfFDFFieldDictionary* asFDFFieldDictionary() {return NULL;}
+ virtual const SkPdfFDFFieldDictionary* asFDFFieldDictionary() const {return NULL;}
+
+ virtual SkPdfFDFFileAnnotationDictionary* asFDFFileAnnotationDictionary() {return NULL;}
+ virtual const SkPdfFDFFileAnnotationDictionary* asFDFFileAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfFDFNamedPageReferenceDictionary* asFDFNamedPageReferenceDictionary() {return NULL;}
+ virtual const SkPdfFDFNamedPageReferenceDictionary* asFDFNamedPageReferenceDictionary() const {return NULL;}
+
+ virtual SkPdfFDFPageDictionary* asFDFPageDictionary() {return NULL;}
+ virtual const SkPdfFDFPageDictionary* asFDFPageDictionary() const {return NULL;}
+
+ virtual SkPdfFDFTemplateDictionary* asFDFTemplateDictionary() {return NULL;}
+ virtual const SkPdfFDFTemplateDictionary* asFDFTemplateDictionary() const {return NULL;}
+
+ virtual SkPdfFDFTrailerDictionary* asFDFTrailerDictionary() {return NULL;}
+ virtual const SkPdfFDFTrailerDictionary* asFDFTrailerDictionary() const {return NULL;}
+
+ virtual SkPdfFieldDictionary* asFieldDictionary() {return NULL;}
+ virtual const SkPdfFieldDictionary* asFieldDictionary() const {return NULL;}
+
+ virtual SkPdfFileAttachmentAnnotationDictionary* asFileAttachmentAnnotationDictionary() {return NULL;}
+ virtual const SkPdfFileAttachmentAnnotationDictionary* asFileAttachmentAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfFileSpecificationDictionary* asFileSpecificationDictionary() {return NULL;}
+ virtual const SkPdfFileSpecificationDictionary* asFileSpecificationDictionary() const {return NULL;}
+
+ virtual SkPdfFileTrailerDictionary* asFileTrailerDictionary() {return NULL;}
+ virtual const SkPdfFileTrailerDictionary* asFileTrailerDictionary() const {return NULL;}
+
+ virtual SkPdfFontDescriptorDictionary* asFontDescriptorDictionary() {return NULL;}
+ virtual const SkPdfFontDescriptorDictionary* asFontDescriptorDictionary() const {return NULL;}
+
+ virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
+ virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
+
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
@@ -31,12 +178,348 @@
virtual SkPdfType3FontDictionary* asType3FontDictionary() {return NULL;}
virtual const SkPdfType3FontDictionary* asType3FontDictionary() const {return NULL;}
+ virtual SkPdfFormFieldActionsDictionary* asFormFieldActionsDictionary() {return NULL;}
+ virtual const SkPdfFormFieldActionsDictionary* asFormFieldActionsDictionary() const {return NULL;}
+
+ virtual SkPdfFreeTextAnnotationDictionary* asFreeTextAnnotationDictionary() {return NULL;}
+ virtual const SkPdfFreeTextAnnotationDictionary* asFreeTextAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfFunctionCommonDictionary* asFunctionCommonDictionary() {return NULL;}
+ virtual const SkPdfFunctionCommonDictionary* asFunctionCommonDictionary() const {return NULL;}
+
+ virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
+ virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
+ virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
+ virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
+
+ virtual SkPdfHideActionDictionary* asHideActionDictionary() {return NULL;}
+ virtual const SkPdfHideActionDictionary* asHideActionDictionary() const {return NULL;}
+
+ virtual SkPdfIccProfileStreamDictionary* asIccProfileStreamDictionary() {return NULL;}
+ virtual const SkPdfIccProfileStreamDictionary* asIccProfileStreamDictionary() const {return NULL;}
+
+ virtual SkPdfIconFitDictionary* asIconFitDictionary() {return NULL;}
+ virtual const SkPdfIconFitDictionary* asIconFitDictionary() const {return NULL;}
+
+ virtual SkPdfImportDataActionDictionary* asImportDataActionDictionary() {return NULL;}
+ virtual const SkPdfImportDataActionDictionary* asImportDataActionDictionary() const {return NULL;}
+
+ virtual SkPdfInkAnnotationDictionary* asInkAnnotationDictionary() {return NULL;}
+ virtual const SkPdfInkAnnotationDictionary* asInkAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfInlineLevelStructureElementsDictionary* asInlineLevelStructureElementsDictionary() {return NULL;}
+ virtual const SkPdfInlineLevelStructureElementsDictionary* asInlineLevelStructureElementsDictionary() const {return NULL;}
+
+ virtual SkPdfInteractiveFormDictionary* asInteractiveFormDictionary() {return NULL;}
+ virtual const SkPdfInteractiveFormDictionary* asInteractiveFormDictionary() const {return NULL;}
+
+ virtual SkPdfJavascriptActionDictionary* asJavascriptActionDictionary() {return NULL;}
+ virtual const SkPdfJavascriptActionDictionary* asJavascriptActionDictionary() const {return NULL;}
+
+ virtual SkPdfJavascriptDictionary* asJavascriptDictionary() {return NULL;}
+ virtual const SkPdfJavascriptDictionary* asJavascriptDictionary() const {return NULL;}
+
+ virtual SkPdfJbig2DecodeFilterDictionary* asJbig2DecodeFilterDictionary() {return NULL;}
+ virtual const SkPdfJbig2DecodeFilterDictionary* asJbig2DecodeFilterDictionary() const {return NULL;}
+
+ virtual SkPdfLabColorSpaceDictionary* asLabColorSpaceDictionary() {return NULL;}
+ virtual const SkPdfLabColorSpaceDictionary* asLabColorSpaceDictionary() const {return NULL;}
+
+ virtual SkPdfLaunchActionDictionary* asLaunchActionDictionary() {return NULL;}
+ virtual const SkPdfLaunchActionDictionary* asLaunchActionDictionary() const {return NULL;}
+
+ virtual SkPdfLineAnnotationDictionary* asLineAnnotationDictionary() {return NULL;}
+ virtual const SkPdfLineAnnotationDictionary* asLineAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfListAttributeDictionary* asListAttributeDictionary() {return NULL;}
+ virtual const SkPdfListAttributeDictionary* asListAttributeDictionary() const {return NULL;}
+
+ virtual SkPdfLzwdecodeAndFlatedecodeFiltersDictionary* asLzwdecodeAndFlatedecodeFiltersDictionary() {return NULL;}
+ virtual const SkPdfLzwdecodeAndFlatedecodeFiltersDictionary* asLzwdecodeAndFlatedecodeFiltersDictionary() const {return NULL;}
+
+ virtual SkPdfMacOsFileInformationDictionary* asMacOsFileInformationDictionary() {return NULL;}
+ virtual const SkPdfMacOsFileInformationDictionary* asMacOsFileInformationDictionary() const {return NULL;}
+
+ virtual SkPdfMarkInformationDictionary* asMarkInformationDictionary() {return NULL;}
+ virtual const SkPdfMarkInformationDictionary* asMarkInformationDictionary() const {return NULL;}
+
+ virtual SkPdfMarkedContentReferenceDictionary* asMarkedContentReferenceDictionary() {return NULL;}
+ virtual const SkPdfMarkedContentReferenceDictionary* asMarkedContentReferenceDictionary() const {return NULL;}
+
+ virtual SkPdfMarkupAnnotationsDictionary* asMarkupAnnotationsDictionary() {return NULL;}
+ virtual const SkPdfMarkupAnnotationsDictionary* asMarkupAnnotationsDictionary() const {return NULL;}
+
+ virtual SkPdfMetadataStreamDictionary* asMetadataStreamDictionary() {return NULL;}
+ virtual const SkPdfMetadataStreamDictionary* asMetadataStreamDictionary() const {return NULL;}
+
+ virtual SkPdfMovieActionDictionary* asMovieActionDictionary() {return NULL;}
+ virtual const SkPdfMovieActionDictionary* asMovieActionDictionary() const {return NULL;}
+
+ virtual SkPdfMovieActivationDictionary* asMovieActivationDictionary() {return NULL;}
+ virtual const SkPdfMovieActivationDictionary* asMovieActivationDictionary() const {return NULL;}
+
+ virtual SkPdfMovieAnnotationDictionary* asMovieAnnotationDictionary() {return NULL;}
+ virtual const SkPdfMovieAnnotationDictionary* asMovieAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfMovieDictionary* asMovieDictionary() {return NULL;}
+ virtual const SkPdfMovieDictionary* asMovieDictionary() const {return NULL;}
+
+ virtual SkPdfNameDictionary* asNameDictionary() {return NULL;}
+ virtual const SkPdfNameDictionary* asNameDictionary() const {return NULL;}
+
+ virtual SkPdfNameTreeNodeDictionary* asNameTreeNodeDictionary() {return NULL;}
+ virtual const SkPdfNameTreeNodeDictionary* asNameTreeNodeDictionary() const {return NULL;}
+
+ virtual SkPdfNamedActionsDictionary* asNamedActionsDictionary() {return NULL;}
+ virtual const SkPdfNamedActionsDictionary* asNamedActionsDictionary() const {return NULL;}
+
+ virtual SkPdfNumberTreeNodeDictionary* asNumberTreeNodeDictionary() {return NULL;}
+ virtual const SkPdfNumberTreeNodeDictionary* asNumberTreeNodeDictionary() const {return NULL;}
+
+ virtual SkPdfObjectReferenceDictionary* asObjectReferenceDictionary() {return NULL;}
+ virtual const SkPdfObjectReferenceDictionary* asObjectReferenceDictionary() const {return NULL;}
+
+ virtual SkPdfOpiVersionDictionary* asOpiVersionDictionary() {return NULL;}
+ virtual const SkPdfOpiVersionDictionary* asOpiVersionDictionary() const {return NULL;}
+
+ virtual SkPdfOutlineDictionary* asOutlineDictionary() {return NULL;}
+ virtual const SkPdfOutlineDictionary* asOutlineDictionary() const {return NULL;}
+
+ virtual SkPdfOutlineItemDictionary* asOutlineItemDictionary() {return NULL;}
+ virtual const SkPdfOutlineItemDictionary* asOutlineItemDictionary() const {return NULL;}
+
+ virtual SkPdfPDF_XOutputIntentDictionary* asPDF_XOutputIntentDictionary() {return NULL;}
+ virtual const SkPdfPDF_XOutputIntentDictionary* asPDF_XOutputIntentDictionary() const {return NULL;}
+
+ virtual SkPdfPSXobjectDictionary* asPSXobjectDictionary() {return NULL;}
+ virtual const SkPdfPSXobjectDictionary* asPSXobjectDictionary() const {return NULL;}
+
+ virtual SkPdfPageLabelDictionary* asPageLabelDictionary() {return NULL;}
+ virtual const SkPdfPageLabelDictionary* asPageLabelDictionary() const {return NULL;}
+
+ virtual SkPdfPageObjectActionsDictionary* asPageObjectActionsDictionary() {return NULL;}
+ virtual const SkPdfPageObjectActionsDictionary* asPageObjectActionsDictionary() const {return NULL;}
+
+ virtual SkPdfPageObjectDictionary* asPageObjectDictionary() {return NULL;}
+ virtual const SkPdfPageObjectDictionary* asPageObjectDictionary() const {return NULL;}
+
+ virtual SkPdfPagePieceDictionary* asPagePieceDictionary() {return NULL;}
+ virtual const SkPdfPagePieceDictionary* asPagePieceDictionary() const {return NULL;}
+
+ virtual SkPdfPageTreeNodeDictionary* asPageTreeNodeDictionary() {return NULL;}
+ virtual const SkPdfPageTreeNodeDictionary* asPageTreeNodeDictionary() const {return NULL;}
+
+ virtual SkPdfPopUpAnnotationDictionary* asPopUpAnnotationDictionary() {return NULL;}
+ virtual const SkPdfPopUpAnnotationDictionary* asPopUpAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfPrinterMarkAnnotationDictionary* asPrinterMarkAnnotationDictionary() {return NULL;}
+ virtual const SkPdfPrinterMarkAnnotationDictionary* asPrinterMarkAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfPrinterMarkFormDictionary* asPrinterMarkFormDictionary() {return NULL;}
+ virtual const SkPdfPrinterMarkFormDictionary* asPrinterMarkFormDictionary() const {return NULL;}
+
+ virtual SkPdfRadioButtonFieldDictionary* asRadioButtonFieldDictionary() {return NULL;}
+ virtual const SkPdfRadioButtonFieldDictionary* asRadioButtonFieldDictionary() const {return NULL;}
+
+ virtual SkPdfReferenceDictionary* asReferenceDictionary() {return NULL;}
+ virtual const SkPdfReferenceDictionary* asReferenceDictionary() const {return NULL;}
+
+ virtual SkPdfRemoteGoToActionDictionary* asRemoteGoToActionDictionary() {return NULL;}
+ virtual const SkPdfRemoteGoToActionDictionary* asRemoteGoToActionDictionary() const {return NULL;}
+
+ virtual SkPdfResetFormActionDictionary* asResetFormActionDictionary() {return NULL;}
+ virtual const SkPdfResetFormActionDictionary* asResetFormActionDictionary() const {return NULL;}
+
+ virtual SkPdfResourceDictionary* asResourceDictionary() {return NULL;}
+ virtual const SkPdfResourceDictionary* asResourceDictionary() const {return NULL;}
+
+ virtual SkPdfRubberStampAnnotationDictionary* asRubberStampAnnotationDictionary() {return NULL;}
+ virtual const SkPdfRubberStampAnnotationDictionary* asRubberStampAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfSeparationDictionary* asSeparationDictionary() {return NULL;}
+ virtual const SkPdfSeparationDictionary* asSeparationDictionary() const {return NULL;}
+
+ virtual SkPdfShadingDictionary* asShadingDictionary() {return NULL;}
+ virtual const SkPdfShadingDictionary* asShadingDictionary() const {return NULL;}
+
+ virtual SkPdfType1ShadingDictionary* asType1ShadingDictionary() {return NULL;}
+ virtual const SkPdfType1ShadingDictionary* asType1ShadingDictionary() const {return NULL;}
+
+ virtual SkPdfType2ShadingDictionary* asType2ShadingDictionary() {return NULL;}
+ virtual const SkPdfType2ShadingDictionary* asType2ShadingDictionary() const {return NULL;}
+
+ virtual SkPdfType3ShadingDictionary* asType3ShadingDictionary() {return NULL;}
+ virtual const SkPdfType3ShadingDictionary* asType3ShadingDictionary() const {return NULL;}
+
+ virtual SkPdfType4ShadingDictionary* asType4ShadingDictionary() {return NULL;}
+ virtual const SkPdfType4ShadingDictionary* asType4ShadingDictionary() const {return NULL;}
+
+ virtual SkPdfType5ShadingDictionary* asType5ShadingDictionary() {return NULL;}
+ virtual const SkPdfType5ShadingDictionary* asType5ShadingDictionary() const {return NULL;}
+
+ virtual SkPdfType6ShadingDictionary* asType6ShadingDictionary() {return NULL;}
+ virtual const SkPdfType6ShadingDictionary* asType6ShadingDictionary() const {return NULL;}
+
+ virtual SkPdfSignatureDictionary* asSignatureDictionary() {return NULL;}
+ virtual const SkPdfSignatureDictionary* asSignatureDictionary() const {return NULL;}
+
+ virtual SkPdfSoftMaskDictionary* asSoftMaskDictionary() {return NULL;}
+ virtual const SkPdfSoftMaskDictionary* asSoftMaskDictionary() const {return NULL;}
+
+ virtual SkPdfSoftMaskImageDictionary* asSoftMaskImageDictionary() {return NULL;}
+ virtual const SkPdfSoftMaskImageDictionary* asSoftMaskImageDictionary() const {return NULL;}
+
+ virtual SkPdfSoundActionDictionary* asSoundActionDictionary() {return NULL;}
+ virtual const SkPdfSoundActionDictionary* asSoundActionDictionary() const {return NULL;}
+
+ virtual SkPdfSoundAnnotationDictionary* asSoundAnnotationDictionary() {return NULL;}
+ virtual const SkPdfSoundAnnotationDictionary* asSoundAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfSoundObjectDictionary* asSoundObjectDictionary() {return NULL;}
+ virtual const SkPdfSoundObjectDictionary* asSoundObjectDictionary() const {return NULL;}
+
+ virtual SkPdfSourceInformationDictionary* asSourceInformationDictionary() {return NULL;}
+ virtual const SkPdfSourceInformationDictionary* asSourceInformationDictionary() const {return NULL;}
+
+ virtual SkPdfSquareOrCircleAnnotation* asSquareOrCircleAnnotation() {return NULL;}
+ virtual const SkPdfSquareOrCircleAnnotation* asSquareOrCircleAnnotation() const {return NULL;}
+
+ virtual SkPdfStandardSecurityHandlerDictionary* asStandardSecurityHandlerDictionary() {return NULL;}
+ virtual const SkPdfStandardSecurityHandlerDictionary* asStandardSecurityHandlerDictionary() const {return NULL;}
+
+ virtual SkPdfStandardStructureDictionary* asStandardStructureDictionary() {return NULL;}
+ virtual const SkPdfStandardStructureDictionary* asStandardStructureDictionary() const {return NULL;}
+
+ virtual SkPdfStreamCommonDictionary* asStreamCommonDictionary() {return NULL;}
+ virtual const SkPdfStreamCommonDictionary* asStreamCommonDictionary() const {return NULL;}
+
+ virtual SkPdfStructureElementAccessDictionary* asStructureElementAccessDictionary() {return NULL;}
+ virtual const SkPdfStructureElementAccessDictionary* asStructureElementAccessDictionary() const {return NULL;}
+
+ virtual SkPdfStructureElementDictionary* asStructureElementDictionary() {return NULL;}
+ virtual const SkPdfStructureElementDictionary* asStructureElementDictionary() const {return NULL;}
+
+ virtual SkPdfStructureTreeRootDictionary* asStructureTreeRootDictionary() {return NULL;}
+ virtual const SkPdfStructureTreeRootDictionary* asStructureTreeRootDictionary() const {return NULL;}
+
+ virtual SkPdfSubmitFormActionDictionary* asSubmitFormActionDictionary() {return NULL;}
+ virtual const SkPdfSubmitFormActionDictionary* asSubmitFormActionDictionary() const {return NULL;}
+
+ virtual SkPdfTableAttributesDictionary* asTableAttributesDictionary() {return NULL;}
+ virtual const SkPdfTableAttributesDictionary* asTableAttributesDictionary() const {return NULL;}
+
+ virtual SkPdfTextAnnotationDictionary* asTextAnnotationDictionary() {return NULL;}
+ virtual const SkPdfTextAnnotationDictionary* asTextAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfTextFieldDictionary* asTextFieldDictionary() {return NULL;}
+ virtual const SkPdfTextFieldDictionary* asTextFieldDictionary() const {return NULL;}
+
+ virtual SkPdfThreadActionDictionary* asThreadActionDictionary() {return NULL;}
+ virtual const SkPdfThreadActionDictionary* asThreadActionDictionary() const {return NULL;}
+
+ virtual SkPdfThreadDictionary* asThreadDictionary() {return NULL;}
+ virtual const SkPdfThreadDictionary* asThreadDictionary() const {return NULL;}
+
+ virtual SkPdfTransitionDictionary* asTransitionDictionary() {return NULL;}
+ virtual const SkPdfTransitionDictionary* asTransitionDictionary() const {return NULL;}
+
+ virtual SkPdfTransparencyGroupDictionary* asTransparencyGroupDictionary() {return NULL;}
+ virtual const SkPdfTransparencyGroupDictionary* asTransparencyGroupDictionary() const {return NULL;}
+
+ virtual SkPdfTrapNetworkAnnotationDictionary* asTrapNetworkAnnotationDictionary() {return NULL;}
+ virtual const SkPdfTrapNetworkAnnotationDictionary* asTrapNetworkAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfTrapNetworkAppearanceStreamDictionary* asTrapNetworkAppearanceStreamDictionary() {return NULL;}
+ virtual const SkPdfTrapNetworkAppearanceStreamDictionary* asTrapNetworkAppearanceStreamDictionary() const {return NULL;}
+
+ virtual SkPdfType0FunctionDictionary* asType0FunctionDictionary() {return NULL;}
+ virtual const SkPdfType0FunctionDictionary* asType0FunctionDictionary() const {return NULL;}
+
+ virtual SkPdfType10HalftoneDictionary* asType10HalftoneDictionary() {return NULL;}
+ virtual const SkPdfType10HalftoneDictionary* asType10HalftoneDictionary() const {return NULL;}
+
+ virtual SkPdfType16HalftoneDictionary* asType16HalftoneDictionary() {return NULL;}
+ virtual const SkPdfType16HalftoneDictionary* asType16HalftoneDictionary() const {return NULL;}
+
+ virtual SkPdfType1HalftoneDictionary* asType1HalftoneDictionary() {return NULL;}
+ virtual const SkPdfType1HalftoneDictionary* asType1HalftoneDictionary() const {return NULL;}
+
+ virtual SkPdfType1PatternDictionary* asType1PatternDictionary() {return NULL;}
+ virtual const SkPdfType1PatternDictionary* asType1PatternDictionary() const {return NULL;}
+
+ virtual SkPdfType2FunctionDictionary* asType2FunctionDictionary() {return NULL;}
+ virtual const SkPdfType2FunctionDictionary* asType2FunctionDictionary() const {return NULL;}
+
+ virtual SkPdfType2PatternDictionary* asType2PatternDictionary() {return NULL;}
+ virtual const SkPdfType2PatternDictionary* asType2PatternDictionary() const {return NULL;}
+
+ virtual SkPdfType3FunctionDictionary* asType3FunctionDictionary() {return NULL;}
+ virtual const SkPdfType3FunctionDictionary* asType3FunctionDictionary() const {return NULL;}
+
+ virtual SkPdfType5HalftoneDictionary* asType5HalftoneDictionary() {return NULL;}
+ virtual const SkPdfType5HalftoneDictionary* asType5HalftoneDictionary() const {return NULL;}
+
+ virtual SkPdfType6HalftoneDictionary* asType6HalftoneDictionary() {return NULL;}
+ virtual const SkPdfType6HalftoneDictionary* asType6HalftoneDictionary() const {return NULL;}
+
+ virtual SkPdfURIActionDictionary* asURIActionDictionary() {return NULL;}
+ virtual const SkPdfURIActionDictionary* asURIActionDictionary() const {return NULL;}
+
+ virtual SkPdfURIDictionary* asURIDictionary() {return NULL;}
+ virtual const SkPdfURIDictionary* asURIDictionary() const {return NULL;}
+
+ virtual SkPdfURLAliasDictionary* asURLAliasDictionary() {return NULL;}
+ virtual const SkPdfURLAliasDictionary* asURLAliasDictionary() const {return NULL;}
+
+ virtual SkPdfVariableTextFieldDictionary* asVariableTextFieldDictionary() {return NULL;}
+ virtual const SkPdfVariableTextFieldDictionary* asVariableTextFieldDictionary() const {return NULL;}
+
+ virtual SkPdfViewerPreferencesDictionary* asViewerPreferencesDictionary() {return NULL;}
+ virtual const SkPdfViewerPreferencesDictionary* asViewerPreferencesDictionary() const {return NULL;}
+
+ virtual SkPdfWebCaptureCommandDictionary* asWebCaptureCommandDictionary() {return NULL;}
+ virtual const SkPdfWebCaptureCommandDictionary* asWebCaptureCommandDictionary() const {return NULL;}
+
+ virtual SkPdfWebCaptureCommandSettingsDictionary* asWebCaptureCommandSettingsDictionary() {return NULL;}
+ virtual const SkPdfWebCaptureCommandSettingsDictionary* asWebCaptureCommandSettingsDictionary() const {return NULL;}
+
+ virtual SkPdfWebCaptureDictionary* asWebCaptureDictionary() {return NULL;}
+ virtual const SkPdfWebCaptureDictionary* asWebCaptureDictionary() const {return NULL;}
+
+ virtual SkPdfWebCaptureImageSetDictionary* asWebCaptureImageSetDictionary() {return NULL;}
+ virtual const SkPdfWebCaptureImageSetDictionary* asWebCaptureImageSetDictionary() const {return NULL;}
+
+ virtual SkPdfWebCaptureInformationDictionary* asWebCaptureInformationDictionary() {return NULL;}
+ virtual const SkPdfWebCaptureInformationDictionary* asWebCaptureInformationDictionary() const {return NULL;}
+
+ virtual SkPdfWebCapturePageSetDictionary* asWebCapturePageSetDictionary() {return NULL;}
+ virtual const SkPdfWebCapturePageSetDictionary* asWebCapturePageSetDictionary() const {return NULL;}
+
+ virtual SkPdfWidgetAnnotationDictionary* asWidgetAnnotationDictionary() {return NULL;}
+ virtual const SkPdfWidgetAnnotationDictionary* asWidgetAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfWindowsLaunchActionDictionary* asWindowsLaunchActionDictionary() {return NULL;}
+ virtual const SkPdfWindowsLaunchActionDictionary* asWindowsLaunchActionDictionary() const {return NULL;}
+
+ virtual SkPdfXObjectDictionary* asXObjectDictionary() {return NULL;}
+ virtual const SkPdfXObjectDictionary* asXObjectDictionary() const {return NULL;}
+
+ virtual SkPdfImageDictionary* asImageDictionary() {return NULL;}
+ virtual const SkPdfImageDictionary* asImageDictionary() const {return NULL;}
+
+ virtual SkPdfType1FormDictionary* asType1FormDictionary() {return NULL;}
+ virtual const SkPdfType1FormDictionary* asType1FormDictionary() const {return NULL;}
+
public:
private:
public:
- SkPdfCIDFontDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfFontDictionary(podofoDoc, podofoObj) {}
+ SkPdfCIDFontDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
- SkPdfCIDFontDictionary(const SkPdfCIDFontDictionary& from) : SkPdfFontDictionary(from.fPodofoDoc, from.fPodofoObj) {}
+ SkPdfCIDFontDictionary(const SkPdfCIDFontDictionary& from) : SkPdfDictionary(from.fPodofoDoc, from.fPodofoObj) {}
virtual bool valid() const {return true;}
@@ -84,7 +567,7 @@
return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "FontDescriptor", "", NULL));
}
- SkPdfDictionary* FontDescriptor() const;
+ SkPdfFontDescriptorDictionary* FontDescriptor() const;
/** (Optional) The default width for glyphs in the CIDFont (see "Glyph Met-
* rics in CIDFonts" on page 340). Default value: 1000.
**/
diff --git a/experimental/PdfViewer/autogen/SkPdfCIDSystemInfoDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfCIDSystemInfoDictionary_autogen.cpp
index 08d696e..37223f1 100644
--- a/experimental/PdfViewer/autogen/SkPdfCIDSystemInfoDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfCIDSystemInfoDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfCIDSystemInfoDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfCIDSystemInfoDictionary_autogen.h
index 9dfcb72..67b93bd 100644
--- a/experimental/PdfViewer/autogen/SkPdfCIDSystemInfoDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfCIDSystemInfoDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCMapDictionary* asCMapDictionary() {return NULL;}
virtual const SkPdfCMapDictionary* asCMapDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfCMapDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfCMapDictionary_autogen.cpp
index 2b97236..203dca4 100644
--- a/experimental/PdfViewer/autogen/SkPdfCMapDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfCMapDictionary_autogen.cpp
@@ -48,3 +48,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfCMapDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfCMapDictionary_autogen.h
index 4f4538b..eb87460 100644
--- a/experimental/PdfViewer/autogen/SkPdfCMapDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfCMapDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfCalgrayColorSpaceDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfCalgrayColorSpaceDictionary_autogen.cpp
index 62525c2..72e9cc7 100644
--- a/experimental/PdfViewer/autogen/SkPdfCalgrayColorSpaceDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfCalgrayColorSpaceDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfCalgrayColorSpaceDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfCalgrayColorSpaceDictionary_autogen.h
index 635ba2e..667d662 100644
--- a/experimental/PdfViewer/autogen/SkPdfCalgrayColorSpaceDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfCalgrayColorSpaceDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfCalrgbColorSpaceDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfCalrgbColorSpaceDictionary_autogen.cpp
index 9e8ba79..f2faeaf 100644
--- a/experimental/PdfViewer/autogen/SkPdfCalrgbColorSpaceDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfCalrgbColorSpaceDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfCalrgbColorSpaceDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfCalrgbColorSpaceDictionary_autogen.h
index 500fad6..f1bef9c 100644
--- a/experimental/PdfViewer/autogen/SkPdfCalrgbColorSpaceDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfCalrgbColorSpaceDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfCatalogDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfCatalogDictionary_autogen.cpp
index df497d9..bbe7861 100644
--- a/experimental/PdfViewer/autogen/SkPdfCatalogDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfCatalogDictionary_autogen.cpp
@@ -160,3 +160,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfCatalogDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfCatalogDictionary_autogen.h
index f98e413..2dbb086 100644
--- a/experimental/PdfViewer/autogen/SkPdfCatalogDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfCatalogDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfCcittfaxdecodeFilterDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfCcittfaxdecodeFilterDictionary_autogen.cpp
index b347c74..a7da6c6 100644
--- a/experimental/PdfViewer/autogen/SkPdfCcittfaxdecodeFilterDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfCcittfaxdecodeFilterDictionary_autogen.cpp
@@ -55,3 +55,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfCcittfaxdecodeFilterDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfCcittfaxdecodeFilterDictionary_autogen.h
index a594476..54bbece 100644
--- a/experimental/PdfViewer/autogen/SkPdfCcittfaxdecodeFilterDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfCcittfaxdecodeFilterDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfCheckboxFieldDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfCheckboxFieldDictionary_autogen.cpp
index d5f0567..947fdf4 100644
--- a/experimental/PdfViewer/autogen/SkPdfCheckboxFieldDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfCheckboxFieldDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfCheckboxFieldDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfCheckboxFieldDictionary_autogen.h
index 1509c97..97a1cdc 100644
--- a/experimental/PdfViewer/autogen/SkPdfCheckboxFieldDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfCheckboxFieldDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfChoiceFieldDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfChoiceFieldDictionary_autogen.cpp
index 02a9a28..39ba54c 100644
--- a/experimental/PdfViewer/autogen/SkPdfChoiceFieldDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfChoiceFieldDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfChoiceFieldDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfChoiceFieldDictionary_autogen.h
index 17d74ba..a2293c3 100644
--- a/experimental/PdfViewer/autogen/SkPdfChoiceFieldDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfChoiceFieldDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfComponentsWithMetadataDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfComponentsWithMetadataDictionary_autogen.cpp
index 2d2e02c..80b5cf3 100644
--- a/experimental/PdfViewer/autogen/SkPdfComponentsWithMetadataDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfComponentsWithMetadataDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfComponentsWithMetadataDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfComponentsWithMetadataDictionary_autogen.h
index 7d77ce7..7d4dfcd 100644
--- a/experimental/PdfViewer/autogen/SkPdfComponentsWithMetadataDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfComponentsWithMetadataDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfDctdecodeFilterDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfDctdecodeFilterDictionary_autogen.cpp
index d961210..66ff159 100644
--- a/experimental/PdfViewer/autogen/SkPdfDctdecodeFilterDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfDctdecodeFilterDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfDctdecodeFilterDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfDctdecodeFilterDictionary_autogen.h
index 71f1a83..2bb6136 100644
--- a/experimental/PdfViewer/autogen/SkPdfDctdecodeFilterDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfDctdecodeFilterDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfDeviceNColorSpaceDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfDeviceNColorSpaceDictionary_autogen.cpp
index f116c15..c41bc24 100644
--- a/experimental/PdfViewer/autogen/SkPdfDeviceNColorSpaceDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfDeviceNColorSpaceDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfDeviceNColorSpaceDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfDeviceNColorSpaceDictionary_autogen.h
index b1bd765..65259c7 100644
--- a/experimental/PdfViewer/autogen/SkPdfDeviceNColorSpaceDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfDeviceNColorSpaceDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfDictionary_autogen.cpp
index a4e3256..ca56507 100644
--- a/experimental/PdfViewer/autogen/SkPdfDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfDictionary_autogen.cpp
@@ -1 +1,2 @@
#include "SkPdfDictionary_autogen.h"
+
diff --git a/experimental/PdfViewer/autogen/SkPdfDocumentCatalogActionsDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfDocumentCatalogActionsDictionary_autogen.cpp
index 07955b2..78df9e3 100644
--- a/experimental/PdfViewer/autogen/SkPdfDocumentCatalogActionsDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfDocumentCatalogActionsDictionary_autogen.cpp
@@ -34,3 +34,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfDocumentCatalogActionsDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfDocumentCatalogActionsDictionary_autogen.h
index 201792f..7ac182e 100644
--- a/experimental/PdfViewer/autogen/SkPdfDocumentCatalogActionsDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfDocumentCatalogActionsDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfDocumentInformationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfDocumentInformationDictionary_autogen.cpp
index 6ee2c33..1b0cb1c 100644
--- a/experimental/PdfViewer/autogen/SkPdfDocumentInformationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfDocumentInformationDictionary_autogen.cpp
@@ -62,3 +62,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfDocumentInformationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfDocumentInformationDictionary_autogen.h
index e4e80e0..fb0a712 100644
--- a/experimental/PdfViewer/autogen/SkPdfDocumentInformationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfDocumentInformationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfEmbeddedFileParameterDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfEmbeddedFileParameterDictionary_autogen.cpp
index 452bf89..86e0a2b 100644
--- a/experimental/PdfViewer/autogen/SkPdfEmbeddedFileParameterDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfEmbeddedFileParameterDictionary_autogen.cpp
@@ -34,3 +34,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfEmbeddedFileParameterDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfEmbeddedFileParameterDictionary_autogen.h
index 7248bfb..00d60f8 100644
--- a/experimental/PdfViewer/autogen/SkPdfEmbeddedFileParameterDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfEmbeddedFileParameterDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfEmbeddedFileStreamDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfEmbeddedFileStreamDictionary_autogen.cpp
index 59c1350..1f3367f 100644
--- a/experimental/PdfViewer/autogen/SkPdfEmbeddedFileStreamDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfEmbeddedFileStreamDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfEmbeddedFileStreamDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfEmbeddedFileStreamDictionary_autogen.h
index cd43e74..4053a07 100644
--- a/experimental/PdfViewer/autogen/SkPdfEmbeddedFileStreamDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfEmbeddedFileStreamDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfEmbeddedFontStreamDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfEmbeddedFontStreamDictionary_autogen.cpp
index a849b19..8b01a5d 100644
--- a/experimental/PdfViewer/autogen/SkPdfEmbeddedFontStreamDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfEmbeddedFontStreamDictionary_autogen.cpp
@@ -34,3 +34,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfEmbeddedFontStreamDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfEmbeddedFontStreamDictionary_autogen.h
index 25e12d8..31bdccc 100644
--- a/experimental/PdfViewer/autogen/SkPdfEmbeddedFontStreamDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfEmbeddedFontStreamDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfEncodingDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfEncodingDictionary_autogen.cpp
index cf90f7c..c305d3b 100644
--- a/experimental/PdfViewer/autogen/SkPdfEncodingDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfEncodingDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfEncodingDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfEncodingDictionary_autogen.h
index 6ec291b..c92cedd 100644
--- a/experimental/PdfViewer/autogen/SkPdfEncodingDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfEncodingDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfEncryptedEmbeddedFileStreamDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfEncryptedEmbeddedFileStreamDictionary_autogen.cpp
index ac88ace..3126cf0 100644
--- a/experimental/PdfViewer/autogen/SkPdfEncryptedEmbeddedFileStreamDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfEncryptedEmbeddedFileStreamDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfEncryptedEmbeddedFileStreamDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfEncryptedEmbeddedFileStreamDictionary_autogen.h
index 2cad87b..3f44f8b 100644
--- a/experimental/PdfViewer/autogen/SkPdfEncryptedEmbeddedFileStreamDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfEncryptedEmbeddedFileStreamDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfEncryptionCommonDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfEncryptionCommonDictionary_autogen.cpp
index 548f91f..a38f329 100644
--- a/experimental/PdfViewer/autogen/SkPdfEncryptionCommonDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfEncryptionCommonDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfEncryptionCommonDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfEncryptionCommonDictionary_autogen.h
index 4716986..84a1dfd 100644
--- a/experimental/PdfViewer/autogen/SkPdfEncryptionCommonDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfEncryptionCommonDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfEnums_autogen.h b/experimental/PdfViewer/autogen/SkPdfEnums_autogen.h
index a4fcd3a..3d6e6fa 100644
--- a/experimental/PdfViewer/autogen/SkPdfEnums_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfEnums_autogen.h
@@ -22,6 +22,7 @@
kBoxColorInformationDictionary_SkPdfObjectType,
kBoxStyleDictionary_SkPdfObjectType,
kCIDFontDescriptorDictionary_SkPdfObjectType,
+ kCIDFontDictionary_SkPdfObjectType,
kCIDSystemInfoDictionary_SkPdfObjectType,
kCMapDictionary_SkPdfObjectType,
kCalgrayColorSpaceDictionary_SkPdfObjectType,
@@ -55,7 +56,6 @@
kFileTrailerDictionary_SkPdfObjectType,
kFontDescriptorDictionary_SkPdfObjectType,
kFontDictionary_SkPdfObjectType,
- kCIDFontDictionary_SkPdfObjectType,
kType0FontDictionary_SkPdfObjectType,
kType1FontDictionary_SkPdfObjectType,
kMultiMasterFontDictionary_SkPdfObjectType,
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFCatalogDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFDFCatalogDictionary_autogen.cpp
index 35ae1d8..e57079e 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFCatalogDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFDFCatalogDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFCatalogDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFDFCatalogDictionary_autogen.h
index 77f066f..8476fc7 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFCatalogDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFDFCatalogDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFDFDictionary_autogen.cpp
index d874ab8..0f749e1 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFDFDictionary_autogen.cpp
@@ -76,3 +76,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFDFDictionary_autogen.h
index cd73ba9..efbe0b9 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFDFDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFFieldDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFDFFieldDictionary_autogen.cpp
index 5ce89c0..a16545f 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFFieldDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFDFFieldDictionary_autogen.cpp
@@ -104,3 +104,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFFieldDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFDFFieldDictionary_autogen.h
index bcdf0c5..9372597 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFFieldDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFDFFieldDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFFileAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFDFFileAnnotationDictionary_autogen.cpp
index 349f3dd..f34d1d6 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFFileAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFDFFileAnnotationDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFFileAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFDFFileAnnotationDictionary_autogen.h
index dab235e..9a21216 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFFileAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFDFFileAnnotationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFNamedPageReferenceDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFDFNamedPageReferenceDictionary_autogen.cpp
index 2e27caa..9fdda2d 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFNamedPageReferenceDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFDFNamedPageReferenceDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return SkPdfFileSpec();
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFNamedPageReferenceDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFDFNamedPageReferenceDictionary_autogen.h
index 6cdbe93..787689e 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFNamedPageReferenceDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFDFNamedPageReferenceDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFPageDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFDFPageDictionary_autogen.cpp
index 181e5c6..6e25ecb 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFPageDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFDFPageDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFPageDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFDFPageDictionary_autogen.h
index 32d1719..0d36efb 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFPageDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFDFPageDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFTemplateDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFDFTemplateDictionary_autogen.cpp
index 7b51c59..9aa27b7 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFTemplateDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFDFTemplateDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return false;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFTemplateDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFDFTemplateDictionary_autogen.h
index 3123a93..ecf036f 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFTemplateDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFDFTemplateDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFTrailerDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFDFTrailerDictionary_autogen.cpp
index 417cb0f..f376306 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFTrailerDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFDFTrailerDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFDFTrailerDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFDFTrailerDictionary_autogen.h
index ca381e0..20366d7 100644
--- a/experimental/PdfViewer/autogen/SkPdfFDFTrailerDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFDFTrailerDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFieldDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFieldDictionary_autogen.cpp
index a010123..94f3a21 100644
--- a/experimental/PdfViewer/autogen/SkPdfFieldDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFieldDictionary_autogen.cpp
@@ -69,3 +69,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFieldDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFieldDictionary_autogen.h
index 8333eba..3a24b58 100644
--- a/experimental/PdfViewer/autogen/SkPdfFieldDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFieldDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFileAttachmentAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFileAttachmentAnnotationDictionary_autogen.cpp
index c05a8e6..fed0cf6 100644
--- a/experimental/PdfViewer/autogen/SkPdfFileAttachmentAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFileAttachmentAnnotationDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFileAttachmentAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFileAttachmentAnnotationDictionary_autogen.h
index 99b60af..9d62b20 100644
--- a/experimental/PdfViewer/autogen/SkPdfFileAttachmentAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFileAttachmentAnnotationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFileSpecificationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFileSpecificationDictionary_autogen.cpp
index 0582417..e87539e 100644
--- a/experimental/PdfViewer/autogen/SkPdfFileSpecificationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFileSpecificationDictionary_autogen.cpp
@@ -69,3 +69,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFileSpecificationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFileSpecificationDictionary_autogen.h
index 494b0d6..3a8e770 100644
--- a/experimental/PdfViewer/autogen/SkPdfFileSpecificationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFileSpecificationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFileTrailerDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFileTrailerDictionary_autogen.cpp
index 98d8290..7b82356 100644
--- a/experimental/PdfViewer/autogen/SkPdfFileTrailerDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFileTrailerDictionary_autogen.cpp
@@ -41,3 +41,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFileTrailerDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFileTrailerDictionary_autogen.h
index 2cec231..684958e 100644
--- a/experimental/PdfViewer/autogen/SkPdfFileTrailerDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFileTrailerDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFontDescriptorDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFontDescriptorDictionary_autogen.cpp
index 5e0bee2..58a2a47 100644
--- a/experimental/PdfViewer/autogen/SkPdfFontDescriptorDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFontDescriptorDictionary_autogen.cpp
@@ -132,3 +132,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFontDescriptorDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFontDescriptorDictionary_autogen.h
index 724c8fa..44ef45c 100644
--- a/experimental/PdfViewer/autogen/SkPdfFontDescriptorDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFontDescriptorDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -160,9 +163,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFontDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFontDictionary_autogen.cpp
index b48d33e..759cbf5 100644
--- a/experimental/PdfViewer/autogen/SkPdfFontDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFontDictionary_autogen.cpp
@@ -1 +1,2 @@
#include "SkPdfFontDictionary_autogen.h"
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFontDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFontDictionary_autogen.h
index 818fc98..493a440 100644
--- a/experimental/PdfViewer/autogen/SkPdfFontDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFontDictionary_autogen.h
@@ -63,6 +63,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFormFieldActionsDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFormFieldActionsDictionary_autogen.cpp
index b4f1f20..7a5eb41 100644
--- a/experimental/PdfViewer/autogen/SkPdfFormFieldActionsDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFormFieldActionsDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFormFieldActionsDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFormFieldActionsDictionary_autogen.h
index 0b7573f..c1abb33 100644
--- a/experimental/PdfViewer/autogen/SkPdfFormFieldActionsDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFormFieldActionsDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFreeTextAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFreeTextAnnotationDictionary_autogen.cpp
index 10d446e..0a1929f 100644
--- a/experimental/PdfViewer/autogen/SkPdfFreeTextAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFreeTextAnnotationDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFreeTextAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFreeTextAnnotationDictionary_autogen.h
index ebbf92e..ef8ec7a 100644
--- a/experimental/PdfViewer/autogen/SkPdfFreeTextAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFreeTextAnnotationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfFunctionCommonDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfFunctionCommonDictionary_autogen.cpp
index 201258f..ac63bae 100644
--- a/experimental/PdfViewer/autogen/SkPdfFunctionCommonDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfFunctionCommonDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfFunctionCommonDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfFunctionCommonDictionary_autogen.h
index f308a0c..1e592a0 100644
--- a/experimental/PdfViewer/autogen/SkPdfFunctionCommonDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfFunctionCommonDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfGoToActionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfGoToActionDictionary_autogen.cpp
index 58ea2cd..2b3fbc3 100644
--- a/experimental/PdfViewer/autogen/SkPdfGoToActionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfGoToActionDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfGoToActionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfGoToActionDictionary_autogen.h
index 3f40dc3..059604c 100644
--- a/experimental/PdfViewer/autogen/SkPdfGoToActionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfGoToActionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfGraphicsStateDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfGraphicsStateDictionary_autogen.cpp
index be09a41..440588c 100644
--- a/experimental/PdfViewer/autogen/SkPdfGraphicsStateDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfGraphicsStateDictionary_autogen.cpp
@@ -258,3 +258,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return false;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfGraphicsStateDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfGraphicsStateDictionary_autogen.h
index 63947df..eebc99b 100644
--- a/experimental/PdfViewer/autogen/SkPdfGraphicsStateDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfGraphicsStateDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfGroupAttributesDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfGroupAttributesDictionary_autogen.cpp
index 750f985..17d0354 100644
--- a/experimental/PdfViewer/autogen/SkPdfGroupAttributesDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfGroupAttributesDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfGroupAttributesDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfGroupAttributesDictionary_autogen.h
index e630507..83df744 100644
--- a/experimental/PdfViewer/autogen/SkPdfGroupAttributesDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfGroupAttributesDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfHexString_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfHexString_autogen.cpp
index b709eff..18d112d 100644
--- a/experimental/PdfViewer/autogen/SkPdfHexString_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfHexString_autogen.cpp
@@ -1 +1,2 @@
#include "SkPdfHexString_autogen.h"
+
diff --git a/experimental/PdfViewer/autogen/SkPdfHideActionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfHideActionDictionary_autogen.cpp
index cb95ec8..8c80d7a 100644
--- a/experimental/PdfViewer/autogen/SkPdfHideActionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfHideActionDictionary_autogen.cpp
@@ -34,3 +34,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return false;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfHideActionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfHideActionDictionary_autogen.h
index 125f339..b5e5b4c 100644
--- a/experimental/PdfViewer/autogen/SkPdfHideActionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfHideActionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfIccProfileStreamDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfIccProfileStreamDictionary_autogen.cpp
index 45e83af..4bffd73 100644
--- a/experimental/PdfViewer/autogen/SkPdfIccProfileStreamDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfIccProfileStreamDictionary_autogen.cpp
@@ -34,3 +34,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfIccProfileStreamDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfIccProfileStreamDictionary_autogen.h
index e163528..192bfd2 100644
--- a/experimental/PdfViewer/autogen/SkPdfIccProfileStreamDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfIccProfileStreamDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfIconFitDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfIconFitDictionary_autogen.cpp
index 71b6ca3..d271706 100644
--- a/experimental/PdfViewer/autogen/SkPdfIconFitDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfIconFitDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfIconFitDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfIconFitDictionary_autogen.h
index b9b49cb..7c882fa 100644
--- a/experimental/PdfViewer/autogen/SkPdfIconFitDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfIconFitDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfImageDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfImageDictionary_autogen.cpp
index 2a083a7..a2c5eef 100644
--- a/experimental/PdfViewer/autogen/SkPdfImageDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfImageDictionary_autogen.cpp
@@ -139,3 +139,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfImportDataActionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfImportDataActionDictionary_autogen.cpp
index 2a7a860..0b1d026 100644
--- a/experimental/PdfViewer/autogen/SkPdfImportDataActionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfImportDataActionDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return SkPdfFileSpec();
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfImportDataActionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfImportDataActionDictionary_autogen.h
index 8c51cd2..23649a9 100644
--- a/experimental/PdfViewer/autogen/SkPdfImportDataActionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfImportDataActionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfInkAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfInkAnnotationDictionary_autogen.cpp
index a8d9709..351d9cc 100644
--- a/experimental/PdfViewer/autogen/SkPdfInkAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfInkAnnotationDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfInkAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfInkAnnotationDictionary_autogen.h
index 943846b..467576a 100644
--- a/experimental/PdfViewer/autogen/SkPdfInkAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfInkAnnotationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfInlineLevelStructureElementsDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfInlineLevelStructureElementsDictionary_autogen.cpp
index 6c43b4c..495d722 100644
--- a/experimental/PdfViewer/autogen/SkPdfInlineLevelStructureElementsDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfInlineLevelStructureElementsDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfInlineLevelStructureElementsDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfInlineLevelStructureElementsDictionary_autogen.h
index 1fad174..b6832a6 100644
--- a/experimental/PdfViewer/autogen/SkPdfInlineLevelStructureElementsDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfInlineLevelStructureElementsDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfInteger_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfInteger_autogen.cpp
index 059c69d..a95fd0d 100644
--- a/experimental/PdfViewer/autogen/SkPdfInteger_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfInteger_autogen.cpp
@@ -1 +1,2 @@
#include "SkPdfInteger_autogen.h"
+
diff --git a/experimental/PdfViewer/autogen/SkPdfInteger_autogen.h b/experimental/PdfViewer/autogen/SkPdfInteger_autogen.h
index 3717140..7e41079 100644
--- a/experimental/PdfViewer/autogen/SkPdfInteger_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfInteger_autogen.h
@@ -72,6 +72,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -171,9 +174,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfInteractiveFormDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfInteractiveFormDictionary_autogen.cpp
index f7b04e0..301c91d 100644
--- a/experimental/PdfViewer/autogen/SkPdfInteractiveFormDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfInteractiveFormDictionary_autogen.cpp
@@ -48,3 +48,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfInteractiveFormDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfInteractiveFormDictionary_autogen.h
index 8720dce..f73b664 100644
--- a/experimental/PdfViewer/autogen/SkPdfInteractiveFormDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfInteractiveFormDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfJavascriptActionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfJavascriptActionDictionary_autogen.cpp
index 7e70b7e..c31145f 100644
--- a/experimental/PdfViewer/autogen/SkPdfJavascriptActionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfJavascriptActionDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfJavascriptActionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfJavascriptActionDictionary_autogen.h
index fa3a1ae..e0456b4 100644
--- a/experimental/PdfViewer/autogen/SkPdfJavascriptActionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfJavascriptActionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfJavascriptDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfJavascriptDictionary_autogen.cpp
index 23be8bd..8204e69 100644
--- a/experimental/PdfViewer/autogen/SkPdfJavascriptDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfJavascriptDictionary_autogen.cpp
@@ -34,3 +34,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfJavascriptDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfJavascriptDictionary_autogen.h
index 42f3ba5..3962e41 100644
--- a/experimental/PdfViewer/autogen/SkPdfJavascriptDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfJavascriptDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfJbig2DecodeFilterDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfJbig2DecodeFilterDictionary_autogen.cpp
index 8cd1eb8..d86a9cf 100644
--- a/experimental/PdfViewer/autogen/SkPdfJbig2DecodeFilterDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfJbig2DecodeFilterDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfJbig2DecodeFilterDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfJbig2DecodeFilterDictionary_autogen.h
index ecb6fc7..625bca2 100644
--- a/experimental/PdfViewer/autogen/SkPdfJbig2DecodeFilterDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfJbig2DecodeFilterDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfLabColorSpaceDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfLabColorSpaceDictionary_autogen.cpp
index 1c4b8ba..ddc3a19 100644
--- a/experimental/PdfViewer/autogen/SkPdfLabColorSpaceDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfLabColorSpaceDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfLabColorSpaceDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfLabColorSpaceDictionary_autogen.h
index bc8dd7e..5c29ebc 100644
--- a/experimental/PdfViewer/autogen/SkPdfLabColorSpaceDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfLabColorSpaceDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfLaunchActionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfLaunchActionDictionary_autogen.cpp
index 9dffe02..b643d15 100644
--- a/experimental/PdfViewer/autogen/SkPdfLaunchActionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfLaunchActionDictionary_autogen.cpp
@@ -41,3 +41,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return false;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfLaunchActionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfLaunchActionDictionary_autogen.h
index f3bc768..4aba61a 100644
--- a/experimental/PdfViewer/autogen/SkPdfLaunchActionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfLaunchActionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfLineAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfLineAnnotationDictionary_autogen.cpp
index 79a32c4..d5c040a 100644
--- a/experimental/PdfViewer/autogen/SkPdfLineAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfLineAnnotationDictionary_autogen.cpp
@@ -41,3 +41,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfLineAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfLineAnnotationDictionary_autogen.h
index 0a0716b..96a4752 100644
--- a/experimental/PdfViewer/autogen/SkPdfLineAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfLineAnnotationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfListAttributeDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfListAttributeDictionary_autogen.cpp
index 88e6137..8d6b29e 100644
--- a/experimental/PdfViewer/autogen/SkPdfListAttributeDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfListAttributeDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfListAttributeDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfListAttributeDictionary_autogen.h
index 7463e3b..3180daf 100644
--- a/experimental/PdfViewer/autogen/SkPdfListAttributeDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfListAttributeDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfLzwdecodeAndFlatedecodeFiltersDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfLzwdecodeAndFlatedecodeFiltersDictionary_autogen.cpp
index 3fae8b1..8b3541d 100644
--- a/experimental/PdfViewer/autogen/SkPdfLzwdecodeAndFlatedecodeFiltersDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfLzwdecodeAndFlatedecodeFiltersDictionary_autogen.cpp
@@ -34,3 +34,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfLzwdecodeAndFlatedecodeFiltersDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfLzwdecodeAndFlatedecodeFiltersDictionary_autogen.h
index 08f8e00..8182165 100644
--- a/experimental/PdfViewer/autogen/SkPdfLzwdecodeAndFlatedecodeFiltersDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfLzwdecodeAndFlatedecodeFiltersDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfMacOsFileInformationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfMacOsFileInformationDictionary_autogen.cpp
index e8d2836..d43e0e7 100644
--- a/experimental/PdfViewer/autogen/SkPdfMacOsFileInformationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfMacOsFileInformationDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfMacOsFileInformationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfMacOsFileInformationDictionary_autogen.h
index f6b2eaa..654429d 100644
--- a/experimental/PdfViewer/autogen/SkPdfMacOsFileInformationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfMacOsFileInformationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfMarkInformationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfMarkInformationDictionary_autogen.cpp
index 332f94c..2a5c8ec 100644
--- a/experimental/PdfViewer/autogen/SkPdfMarkInformationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfMarkInformationDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return false;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfMarkInformationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfMarkInformationDictionary_autogen.h
index 3a3a2b9..bbe18aa 100644
--- a/experimental/PdfViewer/autogen/SkPdfMarkInformationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfMarkInformationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfMarkedContentReferenceDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfMarkedContentReferenceDictionary_autogen.cpp
index f0c24bf..0b8cf8a 100644
--- a/experimental/PdfViewer/autogen/SkPdfMarkedContentReferenceDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfMarkedContentReferenceDictionary_autogen.cpp
@@ -34,3 +34,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfMarkedContentReferenceDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfMarkedContentReferenceDictionary_autogen.h
index 1e3522b..7b21ec4 100644
--- a/experimental/PdfViewer/autogen/SkPdfMarkedContentReferenceDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfMarkedContentReferenceDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfMarkupAnnotationsDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfMarkupAnnotationsDictionary_autogen.cpp
index 7ac0b35..440c92a 100644
--- a/experimental/PdfViewer/autogen/SkPdfMarkupAnnotationsDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfMarkupAnnotationsDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfMarkupAnnotationsDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfMarkupAnnotationsDictionary_autogen.h
index 747ac24..2831f52 100644
--- a/experimental/PdfViewer/autogen/SkPdfMarkupAnnotationsDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfMarkupAnnotationsDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfMetadataStreamDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfMetadataStreamDictionary_autogen.cpp
index cc68bc1..6ce1677 100644
--- a/experimental/PdfViewer/autogen/SkPdfMetadataStreamDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfMetadataStreamDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfMetadataStreamDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfMetadataStreamDictionary_autogen.h
index 2724d10..6d83c53 100644
--- a/experimental/PdfViewer/autogen/SkPdfMetadataStreamDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfMetadataStreamDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfMovieActionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfMovieActionDictionary_autogen.cpp
index e8067ff..9211e45 100644
--- a/experimental/PdfViewer/autogen/SkPdfMovieActionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfMovieActionDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfMovieActionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfMovieActionDictionary_autogen.h
index 41348bc..5e5df5d 100644
--- a/experimental/PdfViewer/autogen/SkPdfMovieActionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfMovieActionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfMovieActivationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfMovieActivationDictionary_autogen.cpp
index 305ef73..1d327a5 100644
--- a/experimental/PdfViewer/autogen/SkPdfMovieActivationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfMovieActivationDictionary_autogen.cpp
@@ -62,3 +62,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfMovieActivationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfMovieActivationDictionary_autogen.h
index b3702db..37ee564 100644
--- a/experimental/PdfViewer/autogen/SkPdfMovieActivationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfMovieActivationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfMovieAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfMovieAnnotationDictionary_autogen.cpp
index d8ff5b8..d2e375e 100644
--- a/experimental/PdfViewer/autogen/SkPdfMovieAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfMovieAnnotationDictionary_autogen.cpp
@@ -34,3 +34,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfMovieAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfMovieAnnotationDictionary_autogen.h
index 5f0218e..5908de4 100644
--- a/experimental/PdfViewer/autogen/SkPdfMovieAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfMovieAnnotationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfMovieDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfMovieDictionary_autogen.cpp
index e2d748b..8f3ba01 100644
--- a/experimental/PdfViewer/autogen/SkPdfMovieDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfMovieDictionary_autogen.cpp
@@ -34,3 +34,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfMovieDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfMovieDictionary_autogen.h
index 2fe0d5b..7e99a5d 100644
--- a/experimental/PdfViewer/autogen/SkPdfMovieDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfMovieDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfMultiMasterFontDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfMultiMasterFontDictionary_autogen.cpp
index d386d90..7cc1b8f 100644
--- a/experimental/PdfViewer/autogen/SkPdfMultiMasterFontDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfMultiMasterFontDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfNameDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfNameDictionary_autogen.cpp
index 107257f..8cbdd45 100644
--- a/experimental/PdfViewer/autogen/SkPdfNameDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfNameDictionary_autogen.cpp
@@ -111,3 +111,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfNameDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfNameDictionary_autogen.h
index 45afd1f..e8becf3 100644
--- a/experimental/PdfViewer/autogen/SkPdfNameDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfNameDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfNameTreeNodeDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfNameTreeNodeDictionary_autogen.cpp
index f59338e..e677440 100644
--- a/experimental/PdfViewer/autogen/SkPdfNameTreeNodeDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfNameTreeNodeDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfNameTreeNodeDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfNameTreeNodeDictionary_autogen.h
index e92e293..6f3ffcf 100644
--- a/experimental/PdfViewer/autogen/SkPdfNameTreeNodeDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfNameTreeNodeDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfName_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfName_autogen.cpp
index ebed12d..d986d32 100644
--- a/experimental/PdfViewer/autogen/SkPdfName_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfName_autogen.cpp
@@ -1 +1,2 @@
#include "SkPdfName_autogen.h"
+
diff --git a/experimental/PdfViewer/autogen/SkPdfName_autogen.h b/experimental/PdfViewer/autogen/SkPdfName_autogen.h
index e3be4a0..9bf6761 100644
--- a/experimental/PdfViewer/autogen/SkPdfName_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfName_autogen.h
@@ -72,6 +72,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -171,9 +174,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfNamedActionsDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfNamedActionsDictionary_autogen.cpp
index b091c68..b2b83f0 100644
--- a/experimental/PdfViewer/autogen/SkPdfNamedActionsDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfNamedActionsDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfNamedActionsDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfNamedActionsDictionary_autogen.h
index 2f18b39..50ca85f 100644
--- a/experimental/PdfViewer/autogen/SkPdfNamedActionsDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfNamedActionsDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfNull_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfNull_autogen.cpp
index 2a5aad3..1e65ded 100644
--- a/experimental/PdfViewer/autogen/SkPdfNull_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfNull_autogen.cpp
@@ -1 +1,2 @@
#include "SkPdfNull_autogen.h"
+
diff --git a/experimental/PdfViewer/autogen/SkPdfNull_autogen.h b/experimental/PdfViewer/autogen/SkPdfNull_autogen.h
index 9b54eee..374c109 100644
--- a/experimental/PdfViewer/autogen/SkPdfNull_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfNull_autogen.h
@@ -72,6 +72,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -171,9 +174,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfNumberTreeNodeDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfNumberTreeNodeDictionary_autogen.cpp
index e876b5b..002b2bf 100644
--- a/experimental/PdfViewer/autogen/SkPdfNumberTreeNodeDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfNumberTreeNodeDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfNumberTreeNodeDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfNumberTreeNodeDictionary_autogen.h
index 596744a..ab4e136 100644
--- a/experimental/PdfViewer/autogen/SkPdfNumberTreeNodeDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfNumberTreeNodeDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfNumber_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfNumber_autogen.cpp
index 6ae9cd5..f342fff 100644
--- a/experimental/PdfViewer/autogen/SkPdfNumber_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfNumber_autogen.cpp
@@ -1 +1,2 @@
#include "SkPdfNumber_autogen.h"
+
diff --git a/experimental/PdfViewer/autogen/SkPdfObjectReferenceDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfObjectReferenceDictionary_autogen.cpp
index 412a62d..684aeba 100644
--- a/experimental/PdfViewer/autogen/SkPdfObjectReferenceDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfObjectReferenceDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfObjectReferenceDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfObjectReferenceDictionary_autogen.h
index ea4bc36..f22a72b 100644
--- a/experimental/PdfViewer/autogen/SkPdfObjectReferenceDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfObjectReferenceDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfObject_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfObject_autogen.cpp
index 8d59fca..f1eb09b 100644
--- a/experimental/PdfViewer/autogen/SkPdfObject_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfObject_autogen.cpp
@@ -1 +1,2 @@
#include "SkPdfObject_autogen.h"
+
diff --git a/experimental/PdfViewer/autogen/SkPdfObject_autogen.h b/experimental/PdfViewer/autogen/SkPdfObject_autogen.h
index 83cd5ca..61ce1ac 100644
--- a/experimental/PdfViewer/autogen/SkPdfObject_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfObject_autogen.h
@@ -70,6 +70,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -169,9 +172,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfOpiVersionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfOpiVersionDictionary_autogen.cpp
index 678be2c..d02be22 100644
--- a/experimental/PdfViewer/autogen/SkPdfOpiVersionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfOpiVersionDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfOpiVersionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfOpiVersionDictionary_autogen.h
index 9318fab..89c5f95 100644
--- a/experimental/PdfViewer/autogen/SkPdfOpiVersionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfOpiVersionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfOutlineDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfOutlineDictionary_autogen.cpp
index 25c0bfc..6869d9f 100644
--- a/experimental/PdfViewer/autogen/SkPdfOutlineDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfOutlineDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfOutlineDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfOutlineDictionary_autogen.h
index f7163a1..c63275b 100644
--- a/experimental/PdfViewer/autogen/SkPdfOutlineDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfOutlineDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfOutlineItemDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfOutlineItemDictionary_autogen.cpp
index 9ea1ebf..05f5ef8 100644
--- a/experimental/PdfViewer/autogen/SkPdfOutlineItemDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfOutlineItemDictionary_autogen.cpp
@@ -97,3 +97,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfOutlineItemDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfOutlineItemDictionary_autogen.h
index 7ca070a..bfbc1f4 100644
--- a/experimental/PdfViewer/autogen/SkPdfOutlineItemDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfOutlineItemDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfPDF_XOutputIntentDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfPDF_XOutputIntentDictionary_autogen.cpp
index b4d3821..1d7e095 100644
--- a/experimental/PdfViewer/autogen/SkPdfPDF_XOutputIntentDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfPDF_XOutputIntentDictionary_autogen.cpp
@@ -48,3 +48,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfPDF_XOutputIntentDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfPDF_XOutputIntentDictionary_autogen.h
index 1d90217..588b2f0 100644
--- a/experimental/PdfViewer/autogen/SkPdfPDF_XOutputIntentDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfPDF_XOutputIntentDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfPSXobjectDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfPSXobjectDictionary_autogen.cpp
index 4c83734..85b6802 100644
--- a/experimental/PdfViewer/autogen/SkPdfPSXobjectDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfPSXobjectDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfPSXobjectDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfPSXobjectDictionary_autogen.h
index d091a0f..56adf52 100644
--- a/experimental/PdfViewer/autogen/SkPdfPSXobjectDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfPSXobjectDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfPageLabelDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfPageLabelDictionary_autogen.cpp
index 2d9039c..171b2b5 100644
--- a/experimental/PdfViewer/autogen/SkPdfPageLabelDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfPageLabelDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfPageLabelDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfPageLabelDictionary_autogen.h
index 0912661..48767f9 100644
--- a/experimental/PdfViewer/autogen/SkPdfPageLabelDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfPageLabelDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfPageObjectActionsDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfPageObjectActionsDictionary_autogen.cpp
index 4021735..e724a83 100644
--- a/experimental/PdfViewer/autogen/SkPdfPageObjectActionsDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfPageObjectActionsDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfPageObjectActionsDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfPageObjectActionsDictionary_autogen.h
index 84bb4f9..583a183 100644
--- a/experimental/PdfViewer/autogen/SkPdfPageObjectActionsDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfPageObjectActionsDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfPageObjectDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfPageObjectDictionary_autogen.cpp
index c206de9..573fb41 100644
--- a/experimental/PdfViewer/autogen/SkPdfPageObjectDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfPageObjectDictionary_autogen.cpp
@@ -181,3 +181,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfPageObjectDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfPageObjectDictionary_autogen.h
index 287f8c4..bda1886 100644
--- a/experimental/PdfViewer/autogen/SkPdfPageObjectDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfPageObjectDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfPagePieceDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfPagePieceDictionary_autogen.h
index 2e6b812..1fb52f7 100644
--- a/experimental/PdfViewer/autogen/SkPdfPagePieceDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfPagePieceDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfPageTreeNodeDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfPageTreeNodeDictionary_autogen.cpp
index a420244..6103597 100644
--- a/experimental/PdfViewer/autogen/SkPdfPageTreeNodeDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfPageTreeNodeDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfPageTreeNodeDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfPageTreeNodeDictionary_autogen.h
index 8d370eb..5a27c4c 100644
--- a/experimental/PdfViewer/autogen/SkPdfPageTreeNodeDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfPageTreeNodeDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfPodofoMapper_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfPodofoMapper_autogen.cpp
index e89a635..cb8c8cd 100644
--- a/experimental/PdfViewer/autogen/SkPdfPodofoMapper_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfPodofoMapper_autogen.cpp
@@ -153,6 +153,7 @@
if (mapBoxColorInformationDictionary(podofoDoc, podofoObj, (SkPdfBoxColorInformationDictionary**)out)) return true;
if (mapBoxStyleDictionary(podofoDoc, podofoObj, (SkPdfBoxStyleDictionary**)out)) return true;
if (mapCIDFontDescriptorDictionary(podofoDoc, podofoObj, (SkPdfCIDFontDescriptorDictionary**)out)) return true;
+ if (mapCIDFontDictionary(podofoDoc, podofoObj, (SkPdfCIDFontDictionary**)out)) return true;
if (mapCIDSystemInfoDictionary(podofoDoc, podofoObj, (SkPdfCIDSystemInfoDictionary**)out)) return true;
if (mapCMapDictionary(podofoDoc, podofoObj, (SkPdfCMapDictionary**)out)) return true;
if (mapCalgrayColorSpaceDictionary(podofoDoc, podofoObj, (SkPdfCalgrayColorSpaceDictionary**)out)) return true;
@@ -328,7 +329,6 @@
bool mapFontDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFontDictionary** out) {
if (!isFontDictionary(podofoDoc, podofoObj)) return false;
- if (mapCIDFontDictionary(podofoDoc, podofoObj, (SkPdfCIDFontDictionary**)out)) return true;
if (mapType0FontDictionary(podofoDoc, podofoObj, (SkPdfType0FontDictionary**)out)) return true;
if (mapType1FontDictionary(podofoDoc, podofoObj, (SkPdfType1FontDictionary**)out)) return true;
@@ -5403,3 +5403,4 @@
if (abr == NULL || *abr == '\0') return false;
return MultiMasterFontDictionaryFromDictionary(pdfDoc, dict, abr, data);
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfPopUpAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfPopUpAnnotationDictionary_autogen.cpp
index e5dacb3..35f68a0 100644
--- a/experimental/PdfViewer/autogen/SkPdfPopUpAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfPopUpAnnotationDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return false;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfPopUpAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfPopUpAnnotationDictionary_autogen.h
index b3dc293..40793b6 100644
--- a/experimental/PdfViewer/autogen/SkPdfPopUpAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfPopUpAnnotationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfPrinterMarkAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfPrinterMarkAnnotationDictionary_autogen.cpp
index abf8ad4..8607e11 100644
--- a/experimental/PdfViewer/autogen/SkPdfPrinterMarkAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfPrinterMarkAnnotationDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfPrinterMarkAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfPrinterMarkAnnotationDictionary_autogen.h
index c6f8af3..2614ea3 100644
--- a/experimental/PdfViewer/autogen/SkPdfPrinterMarkAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfPrinterMarkAnnotationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfPrinterMarkFormDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfPrinterMarkFormDictionary_autogen.cpp
index 688439e..3d7c3f6 100644
--- a/experimental/PdfViewer/autogen/SkPdfPrinterMarkFormDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfPrinterMarkFormDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfPrinterMarkFormDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfPrinterMarkFormDictionary_autogen.h
index 3c2124b..fcc3341 100644
--- a/experimental/PdfViewer/autogen/SkPdfPrinterMarkFormDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfPrinterMarkFormDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfRadioButtonFieldDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfRadioButtonFieldDictionary_autogen.cpp
index 2899711..ac178fc 100644
--- a/experimental/PdfViewer/autogen/SkPdfRadioButtonFieldDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfRadioButtonFieldDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfRadioButtonFieldDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfRadioButtonFieldDictionary_autogen.h
index 67fda2e..289c7ce 100644
--- a/experimental/PdfViewer/autogen/SkPdfRadioButtonFieldDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfRadioButtonFieldDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfReferenceDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfReferenceDictionary_autogen.cpp
index 6430051..e901c3e 100644
--- a/experimental/PdfViewer/autogen/SkPdfReferenceDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfReferenceDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfReferenceDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfReferenceDictionary_autogen.h
index 3a0253c..7062c29 100644
--- a/experimental/PdfViewer/autogen/SkPdfReferenceDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfReferenceDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfReference_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfReference_autogen.cpp
index 550bb9b..f78ef63 100644
--- a/experimental/PdfViewer/autogen/SkPdfReference_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfReference_autogen.cpp
@@ -1 +1,2 @@
#include "SkPdfReference_autogen.h"
+
diff --git a/experimental/PdfViewer/autogen/SkPdfReference_autogen.h b/experimental/PdfViewer/autogen/SkPdfReference_autogen.h
index 01d38c8..c953a6b 100644
--- a/experimental/PdfViewer/autogen/SkPdfReference_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfReference_autogen.h
@@ -72,6 +72,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -171,9 +174,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfRemoteGoToActionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfRemoteGoToActionDictionary_autogen.cpp
index 096dad0..b867053 100644
--- a/experimental/PdfViewer/autogen/SkPdfRemoteGoToActionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfRemoteGoToActionDictionary_autogen.cpp
@@ -41,3 +41,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return false;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfRemoteGoToActionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfRemoteGoToActionDictionary_autogen.h
index 9ae32ca..f3b69f5 100644
--- a/experimental/PdfViewer/autogen/SkPdfRemoteGoToActionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfRemoteGoToActionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfResetFormActionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfResetFormActionDictionary_autogen.cpp
index 27d1941..78a0eb4 100644
--- a/experimental/PdfViewer/autogen/SkPdfResetFormActionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfResetFormActionDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfResetFormActionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfResetFormActionDictionary_autogen.h
index 206fa20..df35047 100644
--- a/experimental/PdfViewer/autogen/SkPdfResetFormActionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfResetFormActionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfResourceDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfResourceDictionary_autogen.cpp
index 5885684..5f4e045 100644
--- a/experimental/PdfViewer/autogen/SkPdfResourceDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfResourceDictionary_autogen.cpp
@@ -55,3 +55,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfResourceDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfResourceDictionary_autogen.h
index a339701..8f4562b 100644
--- a/experimental/PdfViewer/autogen/SkPdfResourceDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfResourceDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfRubberStampAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfRubberStampAnnotationDictionary_autogen.cpp
index 6d3b11e..6636d98 100644
--- a/experimental/PdfViewer/autogen/SkPdfRubberStampAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfRubberStampAnnotationDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfRubberStampAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfRubberStampAnnotationDictionary_autogen.h
index b810ebc..ff598b6 100644
--- a/experimental/PdfViewer/autogen/SkPdfRubberStampAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfRubberStampAnnotationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfSeparationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfSeparationDictionary_autogen.cpp
index c291fa7..533e5d5 100644
--- a/experimental/PdfViewer/autogen/SkPdfSeparationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfSeparationDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfSeparationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfSeparationDictionary_autogen.h
index d4a2c3e..b295443 100644
--- a/experimental/PdfViewer/autogen/SkPdfSeparationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfSeparationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfShadingDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfShadingDictionary_autogen.cpp
index 0659d49..61b986a 100644
--- a/experimental/PdfViewer/autogen/SkPdfShadingDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfShadingDictionary_autogen.cpp
@@ -41,3 +41,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return false;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfShadingDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfShadingDictionary_autogen.h
index 2009666..4e95b50 100644
--- a/experimental/PdfViewer/autogen/SkPdfShadingDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfShadingDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfSignatureDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfSignatureDictionary_autogen.cpp
index 8c164a2..924cb9a 100644
--- a/experimental/PdfViewer/autogen/SkPdfSignatureDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfSignatureDictionary_autogen.cpp
@@ -62,3 +62,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfSignatureDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfSignatureDictionary_autogen.h
index e365ef6..9c23371 100644
--- a/experimental/PdfViewer/autogen/SkPdfSignatureDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfSignatureDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfSoftMaskDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfSoftMaskDictionary_autogen.cpp
index 64ab6ac..b6a7e48 100644
--- a/experimental/PdfViewer/autogen/SkPdfSoftMaskDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfSoftMaskDictionary_autogen.cpp
@@ -41,3 +41,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfSoftMaskDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfSoftMaskDictionary_autogen.h
index 735a359..ecf584a 100644
--- a/experimental/PdfViewer/autogen/SkPdfSoftMaskDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfSoftMaskDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfSoftMaskImageDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfSoftMaskImageDictionary_autogen.cpp
index d82cbb1..c2fb208 100644
--- a/experimental/PdfViewer/autogen/SkPdfSoftMaskImageDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfSoftMaskImageDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfSoftMaskImageDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfSoftMaskImageDictionary_autogen.h
index 259a46b..8e64564 100644
--- a/experimental/PdfViewer/autogen/SkPdfSoftMaskImageDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfSoftMaskImageDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfSoundActionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfSoundActionDictionary_autogen.cpp
index 03ea8d0..e98c8a0 100644
--- a/experimental/PdfViewer/autogen/SkPdfSoundActionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfSoundActionDictionary_autogen.cpp
@@ -41,3 +41,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return false;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfSoundActionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfSoundActionDictionary_autogen.h
index f300de4..fe35905 100644
--- a/experimental/PdfViewer/autogen/SkPdfSoundActionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfSoundActionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfSoundAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfSoundAnnotationDictionary_autogen.cpp
index 44bfca7..f9ad2bc 100644
--- a/experimental/PdfViewer/autogen/SkPdfSoundAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfSoundAnnotationDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfSoundAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfSoundAnnotationDictionary_autogen.h
index 6e37c87..ee0e49e 100644
--- a/experimental/PdfViewer/autogen/SkPdfSoundAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfSoundAnnotationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfSoundObjectDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfSoundObjectDictionary_autogen.cpp
index b3e3258..f05bf22 100644
--- a/experimental/PdfViewer/autogen/SkPdfSoundObjectDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfSoundObjectDictionary_autogen.cpp
@@ -48,3 +48,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfSoundObjectDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfSoundObjectDictionary_autogen.h
index 34a40b3..c885dd0 100644
--- a/experimental/PdfViewer/autogen/SkPdfSoundObjectDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfSoundObjectDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfSourceInformationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfSourceInformationDictionary_autogen.cpp
index 9188c14..6bf902e 100644
--- a/experimental/PdfViewer/autogen/SkPdfSourceInformationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfSourceInformationDictionary_autogen.cpp
@@ -41,3 +41,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfSourceInformationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfSourceInformationDictionary_autogen.h
index 83cfb9a..39b2a9e 100644
--- a/experimental/PdfViewer/autogen/SkPdfSourceInformationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfSourceInformationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfSquareOrCircleAnnotation_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfSquareOrCircleAnnotation_autogen.cpp
index 2d2f903..cdf2f68 100644
--- a/experimental/PdfViewer/autogen/SkPdfSquareOrCircleAnnotation_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfSquareOrCircleAnnotation_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfSquareOrCircleAnnotation_autogen.h b/experimental/PdfViewer/autogen/SkPdfSquareOrCircleAnnotation_autogen.h
index ce9864f..59e3fe3 100644
--- a/experimental/PdfViewer/autogen/SkPdfSquareOrCircleAnnotation_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfSquareOrCircleAnnotation_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfStandardSecurityHandlerDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfStandardSecurityHandlerDictionary_autogen.cpp
index 6716ed8..d8adbcf 100644
--- a/experimental/PdfViewer/autogen/SkPdfStandardSecurityHandlerDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfStandardSecurityHandlerDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfStandardSecurityHandlerDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfStandardSecurityHandlerDictionary_autogen.h
index 079580c..4900a8a 100644
--- a/experimental/PdfViewer/autogen/SkPdfStandardSecurityHandlerDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfStandardSecurityHandlerDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfStandardStructureDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfStandardStructureDictionary_autogen.cpp
index 500748b..23829b5 100644
--- a/experimental/PdfViewer/autogen/SkPdfStandardStructureDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfStandardStructureDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfStandardStructureDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfStandardStructureDictionary_autogen.h
index 281ff19..b9e7568 100644
--- a/experimental/PdfViewer/autogen/SkPdfStandardStructureDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfStandardStructureDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfStreamCommonDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfStreamCommonDictionary_autogen.cpp
index a3cc647..5b4b8fb 100644
--- a/experimental/PdfViewer/autogen/SkPdfStreamCommonDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfStreamCommonDictionary_autogen.cpp
@@ -69,3 +69,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfStreamCommonDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfStreamCommonDictionary_autogen.h
index fddbb6f..3339db8 100644
--- a/experimental/PdfViewer/autogen/SkPdfStreamCommonDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfStreamCommonDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfStream_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfStream_autogen.cpp
index f4b68b6..b1fdd27 100644
--- a/experimental/PdfViewer/autogen/SkPdfStream_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfStream_autogen.cpp
@@ -1 +1,2 @@
#include "SkPdfStream_autogen.h"
+
diff --git a/experimental/PdfViewer/autogen/SkPdfStream_autogen.h b/experimental/PdfViewer/autogen/SkPdfStream_autogen.h
index 911db8d..0f50efb 100644
--- a/experimental/PdfViewer/autogen/SkPdfStream_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfStream_autogen.h
@@ -72,6 +72,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -171,9 +174,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfString_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfString_autogen.cpp
index 796d636..a967633 100644
--- a/experimental/PdfViewer/autogen/SkPdfString_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfString_autogen.cpp
@@ -1 +1,2 @@
#include "SkPdfString_autogen.h"
+
diff --git a/experimental/PdfViewer/autogen/SkPdfString_autogen.h b/experimental/PdfViewer/autogen/SkPdfString_autogen.h
index e14199b..9e6d2e3 100644
--- a/experimental/PdfViewer/autogen/SkPdfString_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfString_autogen.h
@@ -72,6 +72,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -171,9 +174,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfStructureElementAccessDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfStructureElementAccessDictionary_autogen.cpp
index 145fdee..7db9df2 100644
--- a/experimental/PdfViewer/autogen/SkPdfStructureElementAccessDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfStructureElementAccessDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfStructureElementAccessDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfStructureElementAccessDictionary_autogen.h
index fb868a5..27e2eab 100644
--- a/experimental/PdfViewer/autogen/SkPdfStructureElementAccessDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfStructureElementAccessDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfStructureElementDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfStructureElementDictionary_autogen.cpp
index 700c490..0126024 100644
--- a/experimental/PdfViewer/autogen/SkPdfStructureElementDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfStructureElementDictionary_autogen.cpp
@@ -97,3 +97,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfStructureElementDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfStructureElementDictionary_autogen.h
index f666dd4..284ff20 100644
--- a/experimental/PdfViewer/autogen/SkPdfStructureElementDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfStructureElementDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfStructureTreeRootDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfStructureTreeRootDictionary_autogen.cpp
index 08d6af3..b6c9442 100644
--- a/experimental/PdfViewer/autogen/SkPdfStructureTreeRootDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfStructureTreeRootDictionary_autogen.cpp
@@ -69,3 +69,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfStructureTreeRootDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfStructureTreeRootDictionary_autogen.h
index f722733..6189461 100644
--- a/experimental/PdfViewer/autogen/SkPdfStructureTreeRootDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfStructureTreeRootDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfSubmitFormActionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfSubmitFormActionDictionary_autogen.cpp
index e269184..0aa92a8 100644
--- a/experimental/PdfViewer/autogen/SkPdfSubmitFormActionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfSubmitFormActionDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfSubmitFormActionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfSubmitFormActionDictionary_autogen.h
index 3a7d6a6..c996c9a 100644
--- a/experimental/PdfViewer/autogen/SkPdfSubmitFormActionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfSubmitFormActionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfTableAttributesDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfTableAttributesDictionary_autogen.cpp
index cb780e5..dbdb373 100644
--- a/experimental/PdfViewer/autogen/SkPdfTableAttributesDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfTableAttributesDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfTableAttributesDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfTableAttributesDictionary_autogen.h
index a73508b..fccab62 100644
--- a/experimental/PdfViewer/autogen/SkPdfTableAttributesDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfTableAttributesDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfTextAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfTextAnnotationDictionary_autogen.cpp
index 2815051..6b493a6 100644
--- a/experimental/PdfViewer/autogen/SkPdfTextAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfTextAnnotationDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfTextAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfTextAnnotationDictionary_autogen.h
index f164423..93f6763 100644
--- a/experimental/PdfViewer/autogen/SkPdfTextAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfTextAnnotationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfTextFieldDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfTextFieldDictionary_autogen.cpp
index dcb5467..ca3187c 100644
--- a/experimental/PdfViewer/autogen/SkPdfTextFieldDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfTextFieldDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfTextFieldDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfTextFieldDictionary_autogen.h
index 30a7e41..897ef7e 100644
--- a/experimental/PdfViewer/autogen/SkPdfTextFieldDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfTextFieldDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfThreadActionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfThreadActionDictionary_autogen.cpp
index 681c298..8544c8c 100644
--- a/experimental/PdfViewer/autogen/SkPdfThreadActionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfThreadActionDictionary_autogen.cpp
@@ -48,3 +48,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfThreadActionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfThreadActionDictionary_autogen.h
index 5b5a813..9630c33 100644
--- a/experimental/PdfViewer/autogen/SkPdfThreadActionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfThreadActionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.cpp
index 656c1f6..d3e75f8 100644
--- a/experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.h
index afb1813..20601c8 100644
--- a/experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfTransitionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfTransitionDictionary_autogen.cpp
index 38229fa..dcd16e5 100644
--- a/experimental/PdfViewer/autogen/SkPdfTransitionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfTransitionDictionary_autogen.cpp
@@ -41,3 +41,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfTransitionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfTransitionDictionary_autogen.h
index e3fa5b5..ca5bd9a 100644
--- a/experimental/PdfViewer/autogen/SkPdfTransitionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfTransitionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfTransparencyGroupDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfTransparencyGroupDictionary_autogen.cpp
index 4c4be91..cb81161 100644
--- a/experimental/PdfViewer/autogen/SkPdfTransparencyGroupDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfTransparencyGroupDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfTransparencyGroupDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfTransparencyGroupDictionary_autogen.h
index 8424b4a..f5e3125 100644
--- a/experimental/PdfViewer/autogen/SkPdfTransparencyGroupDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfTransparencyGroupDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfTrapNetworkAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfTrapNetworkAnnotationDictionary_autogen.cpp
index 96c4c05..e59e974 100644
--- a/experimental/PdfViewer/autogen/SkPdfTrapNetworkAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfTrapNetworkAnnotationDictionary_autogen.cpp
@@ -41,3 +41,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfTrapNetworkAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfTrapNetworkAnnotationDictionary_autogen.h
index 79f3cbe..2eb1c9f 100644
--- a/experimental/PdfViewer/autogen/SkPdfTrapNetworkAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfTrapNetworkAnnotationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfTrapNetworkAppearanceStreamDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfTrapNetworkAppearanceStreamDictionary_autogen.cpp
index 5dd50ae..729d96c 100644
--- a/experimental/PdfViewer/autogen/SkPdfTrapNetworkAppearanceStreamDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfTrapNetworkAppearanceStreamDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfTrapNetworkAppearanceStreamDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfTrapNetworkAppearanceStreamDictionary_autogen.h
index 5b4c745..efc4dde 100644
--- a/experimental/PdfViewer/autogen/SkPdfTrapNetworkAppearanceStreamDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfTrapNetworkAppearanceStreamDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfTrueTypeFontDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfTrueTypeFontDictionary_autogen.cpp
index bf94eee..1929a9e 100644
--- a/experimental/PdfViewer/autogen/SkPdfTrueTypeFontDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfTrueTypeFontDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType0FontDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType0FontDictionary_autogen.cpp
index 4383cac..472b903 100644
--- a/experimental/PdfViewer/autogen/SkPdfType0FontDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType0FontDictionary_autogen.cpp
@@ -48,3 +48,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType0FontDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfType0FontDictionary_autogen.h
index 4cbcd63..8091312 100644
--- a/experimental/PdfViewer/autogen/SkPdfType0FontDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfType0FontDictionary_autogen.h
@@ -16,9 +16,6 @@
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return this;}
private:
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType1FontDictionary* asType1FontDictionary() {return NULL;}
virtual const SkPdfType1FontDictionary* asType1FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfType0FunctionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType0FunctionDictionary_autogen.cpp
index 9beae24..c28bbc3 100644
--- a/experimental/PdfViewer/autogen/SkPdfType0FunctionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType0FunctionDictionary_autogen.cpp
@@ -34,3 +34,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType0FunctionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfType0FunctionDictionary_autogen.h
index f14ec53..7cd818f 100644
--- a/experimental/PdfViewer/autogen/SkPdfType0FunctionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfType0FunctionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfType10HalftoneDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType10HalftoneDictionary_autogen.cpp
index 523f408..3ac7e41 100644
--- a/experimental/PdfViewer/autogen/SkPdfType10HalftoneDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType10HalftoneDictionary_autogen.cpp
@@ -48,3 +48,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType10HalftoneDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfType10HalftoneDictionary_autogen.h
index c993e0f..16076c1 100644
--- a/experimental/PdfViewer/autogen/SkPdfType10HalftoneDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfType10HalftoneDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfType16HalftoneDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType16HalftoneDictionary_autogen.cpp
index 0855975..2cc4180 100644
--- a/experimental/PdfViewer/autogen/SkPdfType16HalftoneDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType16HalftoneDictionary_autogen.cpp
@@ -62,3 +62,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType16HalftoneDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfType16HalftoneDictionary_autogen.h
index c62b2e5..72b316b 100644
--- a/experimental/PdfViewer/autogen/SkPdfType16HalftoneDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfType16HalftoneDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfType1FontDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType1FontDictionary_autogen.cpp
index 98e17cf..a3e3f92 100644
--- a/experimental/PdfViewer/autogen/SkPdfType1FontDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType1FontDictionary_autogen.cpp
@@ -49,9 +49,9 @@
return NULL;
}
-SkPdfDictionary* SkPdfType1FontDictionary::FontDescriptor() const {
- SkPdfDictionary* ret;
- if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "FontDescriptor", "", &ret)) return ret;
+SkPdfFontDescriptorDictionary* SkPdfType1FontDictionary::FontDescriptor() const {
+ SkPdfFontDescriptorDictionary* ret;
+ if (FontDescriptorDictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "FontDescriptor", "", &ret)) return ret;
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
@@ -76,3 +76,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType1FontDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfType1FontDictionary_autogen.h
index 371acc7..502620b 100644
--- a/experimental/PdfViewer/autogen/SkPdfType1FontDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfType1FontDictionary_autogen.h
@@ -16,9 +16,6 @@
virtual const SkPdfType1FontDictionary* asType1FontDictionary() const {return this;}
private:
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
@@ -114,7 +111,7 @@
return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "FontDescriptor", "", NULL));
}
- SkPdfDictionary* FontDescriptor() const;
+ SkPdfFontDescriptorDictionary* FontDescriptor() const;
/** (Optional) A specification of the font's character encoding, if different from
* its built-in encoding. The value of Encoding may be either the name of a pre-
* defined encoding (MacRomanEncoding, MacExpertEncoding, or WinAnsi-
diff --git a/experimental/PdfViewer/autogen/SkPdfType1FormDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType1FormDictionary_autogen.cpp
index d8ecb0e..dd2736c 100644
--- a/experimental/PdfViewer/autogen/SkPdfType1FormDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType1FormDictionary_autogen.cpp
@@ -104,3 +104,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType1HalftoneDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType1HalftoneDictionary_autogen.cpp
index bbb1b50..dc756bd 100644
--- a/experimental/PdfViewer/autogen/SkPdfType1HalftoneDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType1HalftoneDictionary_autogen.cpp
@@ -69,3 +69,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType1HalftoneDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfType1HalftoneDictionary_autogen.h
index b70d0cf..19efb85 100644
--- a/experimental/PdfViewer/autogen/SkPdfType1HalftoneDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfType1HalftoneDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfType1PatternDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType1PatternDictionary_autogen.cpp
index 4ffeda7..f2ac93a 100644
--- a/experimental/PdfViewer/autogen/SkPdfType1PatternDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType1PatternDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType1PatternDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfType1PatternDictionary_autogen.h
index 4589339..a9c9a54 100644
--- a/experimental/PdfViewer/autogen/SkPdfType1PatternDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfType1PatternDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfType1ShadingDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType1ShadingDictionary_autogen.cpp
index 99ab0bd..be4929d 100644
--- a/experimental/PdfViewer/autogen/SkPdfType1ShadingDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType1ShadingDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return SkPdfFunction();
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType2FunctionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType2FunctionDictionary_autogen.cpp
index e66f474..c57e0f8 100644
--- a/experimental/PdfViewer/autogen/SkPdfType2FunctionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType2FunctionDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType2FunctionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfType2FunctionDictionary_autogen.h
index 549db11..6359a59 100644
--- a/experimental/PdfViewer/autogen/SkPdfType2FunctionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfType2FunctionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfType2PatternDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType2PatternDictionary_autogen.cpp
index 4dab457..7f0976f 100644
--- a/experimental/PdfViewer/autogen/SkPdfType2PatternDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType2PatternDictionary_autogen.cpp
@@ -41,3 +41,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType2PatternDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfType2PatternDictionary_autogen.h
index d97b721..bef782f 100644
--- a/experimental/PdfViewer/autogen/SkPdfType2PatternDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfType2PatternDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfType2ShadingDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType2ShadingDictionary_autogen.cpp
index d0a9499..b0069d0 100644
--- a/experimental/PdfViewer/autogen/SkPdfType2ShadingDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType2ShadingDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType3FontDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType3FontDictionary_autogen.cpp
index bedaf58..7b413e3 100644
--- a/experimental/PdfViewer/autogen/SkPdfType3FontDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType3FontDictionary_autogen.cpp
@@ -90,3 +90,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType3FunctionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType3FunctionDictionary_autogen.cpp
index 5fae877..6449c31 100644
--- a/experimental/PdfViewer/autogen/SkPdfType3FunctionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType3FunctionDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType3FunctionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfType3FunctionDictionary_autogen.h
index 38451fb..a45c9c2 100644
--- a/experimental/PdfViewer/autogen/SkPdfType3FunctionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfType3FunctionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfType3ShadingDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType3ShadingDictionary_autogen.cpp
index 44ca17a..042cc8f 100644
--- a/experimental/PdfViewer/autogen/SkPdfType3ShadingDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType3ShadingDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType4ShadingDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType4ShadingDictionary_autogen.cpp
index 574a450..671856e 100644
--- a/experimental/PdfViewer/autogen/SkPdfType4ShadingDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType4ShadingDictionary_autogen.cpp
@@ -34,3 +34,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return SkPdfFunction();
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType5HalftoneDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType5HalftoneDictionary_autogen.cpp
index 2fabeb4..0d999dc 100644
--- a/experimental/PdfViewer/autogen/SkPdfType5HalftoneDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType5HalftoneDictionary_autogen.cpp
@@ -50,3 +50,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType5HalftoneDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfType5HalftoneDictionary_autogen.h
index 0179af3..18e931d 100644
--- a/experimental/PdfViewer/autogen/SkPdfType5HalftoneDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfType5HalftoneDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfType5ShadingDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType5ShadingDictionary_autogen.cpp
index 1245c81..4ec82d1 100644
--- a/experimental/PdfViewer/autogen/SkPdfType5ShadingDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType5ShadingDictionary_autogen.cpp
@@ -34,3 +34,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return SkPdfFunction();
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType6HalftoneDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType6HalftoneDictionary_autogen.cpp
index da73d31..8f9ecd4 100644
--- a/experimental/PdfViewer/autogen/SkPdfType6HalftoneDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType6HalftoneDictionary_autogen.cpp
@@ -48,3 +48,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfType6HalftoneDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfType6HalftoneDictionary_autogen.h
index 9c68248..55216ec 100644
--- a/experimental/PdfViewer/autogen/SkPdfType6HalftoneDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfType6HalftoneDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfType6ShadingDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfType6ShadingDictionary_autogen.cpp
index 5081788..c7fa09e 100644
--- a/experimental/PdfViewer/autogen/SkPdfType6ShadingDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfType6ShadingDictionary_autogen.cpp
@@ -34,3 +34,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return SkPdfFunction();
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfURIActionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfURIActionDictionary_autogen.cpp
index 07fd5fa..e2bf8cf 100644
--- a/experimental/PdfViewer/autogen/SkPdfURIActionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfURIActionDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return false;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfURIActionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfURIActionDictionary_autogen.h
index 212969e..d0deca6 100644
--- a/experimental/PdfViewer/autogen/SkPdfURIActionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfURIActionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfURIDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfURIDictionary_autogen.cpp
index 0b65913..1c10e0b 100644
--- a/experimental/PdfViewer/autogen/SkPdfURIDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfURIDictionary_autogen.cpp
@@ -6,3 +6,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfURIDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfURIDictionary_autogen.h
index be21237..09aedce 100644
--- a/experimental/PdfViewer/autogen/SkPdfURIDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfURIDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfURLAliasDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfURLAliasDictionary_autogen.cpp
index 14f4b2d..7368499 100644
--- a/experimental/PdfViewer/autogen/SkPdfURLAliasDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfURLAliasDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfURLAliasDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfURLAliasDictionary_autogen.h
index 93ad7f6..a50cd2c 100644
--- a/experimental/PdfViewer/autogen/SkPdfURLAliasDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfURLAliasDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfVariableTextFieldDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfVariableTextFieldDictionary_autogen.cpp
index fc97f9b..e927f3c 100644
--- a/experimental/PdfViewer/autogen/SkPdfVariableTextFieldDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfVariableTextFieldDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfVariableTextFieldDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfVariableTextFieldDictionary_autogen.h
index 29e54a4..5db4aa9 100644
--- a/experimental/PdfViewer/autogen/SkPdfVariableTextFieldDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfVariableTextFieldDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfViewerPreferencesDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfViewerPreferencesDictionary_autogen.cpp
index 33a35c5..dac44df 100644
--- a/experimental/PdfViewer/autogen/SkPdfViewerPreferencesDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfViewerPreferencesDictionary_autogen.cpp
@@ -83,3 +83,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfViewerPreferencesDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfViewerPreferencesDictionary_autogen.h
index 0f6a327..879c856 100644
--- a/experimental/PdfViewer/autogen/SkPdfViewerPreferencesDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfViewerPreferencesDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandDictionary_autogen.cpp
index 800af54..f09a7b1 100644
--- a/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandDictionary_autogen.cpp
@@ -55,3 +55,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandDictionary_autogen.h
index acb84c0..ddc562c 100644
--- a/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandSettingsDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandSettingsDictionary_autogen.cpp
index c277520..f0790e6 100644
--- a/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandSettingsDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandSettingsDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandSettingsDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandSettingsDictionary_autogen.h
index ecbff5c..db17f72 100644
--- a/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandSettingsDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfWebCaptureCommandSettingsDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfWebCaptureDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfWebCaptureDictionary_autogen.cpp
index 21b1b3e..0892588 100644
--- a/experimental/PdfViewer/autogen/SkPdfWebCaptureDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfWebCaptureDictionary_autogen.cpp
@@ -55,3 +55,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return SkPdfDate();
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfWebCaptureDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfWebCaptureDictionary_autogen.h
index c87963e..b62459b 100644
--- a/experimental/PdfViewer/autogen/SkPdfWebCaptureDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfWebCaptureDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfWebCaptureImageSetDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfWebCaptureImageSetDictionary_autogen.cpp
index 26e5981..db2c429 100644
--- a/experimental/PdfViewer/autogen/SkPdfWebCaptureImageSetDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfWebCaptureImageSetDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfWebCaptureImageSetDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfWebCaptureImageSetDictionary_autogen.h
index ee23a8e..45594fc 100644
--- a/experimental/PdfViewer/autogen/SkPdfWebCaptureImageSetDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfWebCaptureImageSetDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfWebCaptureInformationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfWebCaptureInformationDictionary_autogen.cpp
index e3f8e11..dec583d 100644
--- a/experimental/PdfViewer/autogen/SkPdfWebCaptureInformationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfWebCaptureInformationDictionary_autogen.cpp
@@ -13,3 +13,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfWebCaptureInformationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfWebCaptureInformationDictionary_autogen.h
index c94f93f..8681f88 100644
--- a/experimental/PdfViewer/autogen/SkPdfWebCaptureInformationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfWebCaptureInformationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfWebCapturePageSetDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfWebCapturePageSetDictionary_autogen.cpp
index f180e1f..ba6b144 100644
--- a/experimental/PdfViewer/autogen/SkPdfWebCapturePageSetDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfWebCapturePageSetDictionary_autogen.cpp
@@ -20,3 +20,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfWebCapturePageSetDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfWebCapturePageSetDictionary_autogen.h
index f5fc327..77b7c03 100644
--- a/experimental/PdfViewer/autogen/SkPdfWebCapturePageSetDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfWebCapturePageSetDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfWidgetAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfWidgetAnnotationDictionary_autogen.cpp
index aaa3f2d..db8bbed 100644
--- a/experimental/PdfViewer/autogen/SkPdfWidgetAnnotationDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfWidgetAnnotationDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfWidgetAnnotationDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfWidgetAnnotationDictionary_autogen.h
index 0a4d360..c1e408f 100644
--- a/experimental/PdfViewer/autogen/SkPdfWidgetAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfWidgetAnnotationDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfWindowsLaunchActionDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfWindowsLaunchActionDictionary_autogen.cpp
index c92b28b..838e2be 100644
--- a/experimental/PdfViewer/autogen/SkPdfWindowsLaunchActionDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfWindowsLaunchActionDictionary_autogen.cpp
@@ -27,3 +27,4 @@
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
+
diff --git a/experimental/PdfViewer/autogen/SkPdfWindowsLaunchActionDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfWindowsLaunchActionDictionary_autogen.h
index b3fe9e1..2675b02 100644
--- a/experimental/PdfViewer/autogen/SkPdfWindowsLaunchActionDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfWindowsLaunchActionDictionary_autogen.h
@@ -64,6 +64,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -163,9 +166,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/SkPdfXObjectDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfXObjectDictionary_autogen.cpp
index a41416d..ef58c4f 100644
--- a/experimental/PdfViewer/autogen/SkPdfXObjectDictionary_autogen.cpp
+++ b/experimental/PdfViewer/autogen/SkPdfXObjectDictionary_autogen.cpp
@@ -1 +1,2 @@
#include "SkPdfXObjectDictionary_autogen.h"
+
diff --git a/experimental/PdfViewer/autogen/SkPdfXObjectDictionary_autogen.h b/experimental/PdfViewer/autogen/SkPdfXObjectDictionary_autogen.h
index 888bee5..9b8d0ff 100644
--- a/experimental/PdfViewer/autogen/SkPdfXObjectDictionary_autogen.h
+++ b/experimental/PdfViewer/autogen/SkPdfXObjectDictionary_autogen.h
@@ -63,6 +63,9 @@
virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
@@ -162,9 +165,6 @@
virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
- virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
- virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
-
virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
diff --git a/experimental/PdfViewer/autogen/pdfspec_autogen.py b/experimental/PdfViewer/autogen/pdfspec_autogen.py
index c5a419d..974d97a 100644
--- a/experimental/PdfViewer/autogen/pdfspec_autogen.py
+++ b/experimental/PdfViewer/autogen/pdfspec_autogen.py
@@ -1772,7 +1772,7 @@
.optional()\
.field('FontDescriptor')\
.name('FontDescriptor')\
- .type('dictionary')\
+ .type('FontDescriptorDictionary')\
.comment('(Required except for the standard 14 fonts; must be an indirect reference) A font\ndescriptor describing the font\'s metrics other than its glyph widths (see Sec-\ntion 5.7, "Font Descriptors").\n Note: For the standard 14 fonts, the entries FirstChar, LastChar, Widths, and\n FontDescriptor must either all be present or all absent. Ordinarily, they are ab-\n sent; specifying them enables a standard font to be overridden (see "Standard\n Type 1 Fonts," below).')\
.done().done()\
.optional()\
@@ -1907,7 +1907,7 @@
.done().done()\
.done()
- pdfspec.addClass('CIDFontDictionary', 'FontDictionary', 'Entries in a CIDFont dictionary')\
+ pdfspec.addClass('CIDFontDictionary', 'Dictionary', 'Entries in a CIDFont dictionary')\
.required('NULL')\
.field('Type')\
.name('Type')\
@@ -1936,7 +1936,7 @@
.optional()\
.field('FontDescriptor')\
.name('FontDescriptor')\
- .type('dictionary')\
+ .type('FontDescriptorDictionary')\
.comment('(Required; must be an indirect reference) A font descriptor describing the\nCIDFont\'s default metrics other than its glyph widths (see Section 5.7,\n"Font Descriptors").')\
.done().done()\
.optional()\
diff --git a/experimental/PdfViewer/generate_code.py b/experimental/PdfViewer/generate_code.py
index 0028cf3..0802c5e 100644
--- a/experimental/PdfViewer/generate_code.py
+++ b/experimental/PdfViewer/generate_code.py
@@ -62,7 +62,10 @@
def type(self, types):
# TODO (edisonn): if simple type, use it, otherwise set it to Dictionary, and set a mask for valid types, like array or name
types = types.strip()
- types = types.replace('or', ' ')
+ types = types.replace(' or ', ' ')
+ types = types.replace(' or,', ' ')
+ types = types.replace(',or ', ' ')
+ types = types.replace(',or,', ' ')
types = types.replace(',', ' ')
types = types.replace('text', ' ') # TODO(edisonn): what is the difference between 'text string' and 'string'?
types = types.replace('file specification', 'file_specification')
diff --git a/experimental/PdfViewer/spec2def.py b/experimental/PdfViewer/spec2def.py
index bbb5830..b53e251 100644
--- a/experimental/PdfViewer/spec2def.py
+++ b/experimental/PdfViewer/spec2def.py
@@ -105,7 +105,7 @@
'TABLE 5.9': ['Type3FontDictionary', 'Entries in a Type 3 font dictionary', 'Type1FontDictionary', {'Subtype': '[datatypes.PdfName(\'Type3\')]'}],
'TABLE 5.11': ['EncodingDictionary', 'Entries in an encoding dictionary'],
'TABLE 5.12': ['CIDSystemInfoDictionary', 'Entries in a CIDSystemInfo dictionary'],
-'TABLE 5.13': ['CIDFontDictionary', 'Entries in a CIDFont dictionary', 'FontDictionary', {'Subtype': '[datatypes.PdfName(\'CIDFontType0\'), datatypes.PdfName(\'CIDFontType2\')]'}],
+'TABLE 5.13': ['CIDFontDictionary', 'Entries in a CIDFont dictionary', '', {'Subtype': '[datatypes.PdfName(\'CIDFontType0\'), datatypes.PdfName(\'CIDFontType2\')]'}],
'TABLE 5.16': ['CMapDictionary', 'Additional entries in a CMap dictionary'],
'TABLE 5.17': ['Type0FontDictionary', 'Entries in a Type 0 font dictionary', 'FontDictionary', {'Subtype': '[datatypes.PdfName(\'Type0\')]'}],
'TABLE 5.18': ['FontDescriptorDictionary', 'Entries common to all font descriptors', '', {'Type': '[datatypes.PdfName(\'FontDescriptor\')]'}],