skia2/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfWindowsLaunchActionDictionary_autogen.cpp
skia.committer@gmail.com b74bdf0249 Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@10842 2bbb7eff-a529-9590-31e7-b0007b416f81
2013-08-21 07:01:29 +00:00

52 lines
1.9 KiB
C++

#include "SkPdfWindowsLaunchActionDictionary_autogen.h"
#include "SkPdfNativeDoc.h"
SkString SkPdfWindowsLaunchActionDictionary::F(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("F", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return SkString();
}
bool SkPdfWindowsLaunchActionDictionary::has_F() const {
return get("F", "") != NULL;
}
SkString SkPdfWindowsLaunchActionDictionary::D(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("D", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
// TODO(edisonn): warn about missing default value for optional fields
return SkString();
}
bool SkPdfWindowsLaunchActionDictionary::has_D() const {
return get("D", "") != NULL;
}
SkString SkPdfWindowsLaunchActionDictionary::O(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("O", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
// TODO(edisonn): warn about missing default value for optional fields
return SkString();
}
bool SkPdfWindowsLaunchActionDictionary::has_O() const {
return get("O", "") != NULL;
}
SkString SkPdfWindowsLaunchActionDictionary::P(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("P", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
// TODO(edisonn): warn about missing default value for optional fields
return SkString();
}
bool SkPdfWindowsLaunchActionDictionary::has_P() const {
return get("P", "") != NULL;
}