summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorHenrique Nakashima <hnakashima@chromium.org>2018-07-11 21:40:03 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-07-11 21:40:03 +0000
commit140deadc0cb8035c05aaabebe05d6aa6c5291829 (patch)
tree4596c4fcab93daa25b512f0089c97bf7716d8ec0 /public
parentb4bcf69210719810ca563b9f8c0179719e80d212 (diff)
downloadpdfium-140deadc0cb8035c05aaabebe05d6aa6c5291829.tar.xz
Remove clunky mark property value getters by index.
The key getters are necessary to list the properties, but after getting those keys, the *ByKey functions can be called. These functions are therefore unnecessary. In a follow-up CL, I will remove the "ByKey" suffix from the other versions. Bug: pdfium:1037 Change-Id: I02760025470a295971c4900fce1b6a8bbc7a5820 Reviewed-on: https://pdfium-review.googlesource.com/37590 Commit-Queue: Henrique Nakashima <hnakashima@chromium.org> Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'public')
-rw-r--r--public/fpdf_edit.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/public/fpdf_edit.h b/public/fpdf_edit.h
index e6f193a37b..5e3efb5825 100644
--- a/public/fpdf_edit.h
+++ b/public/fpdf_edit.h
@@ -370,17 +370,6 @@ FPDFPageObjMark_GetParamKey(FPDF_PAGEOBJECTMARK mark,
unsigned long buflen);
// Experimental API.
-// Get the type of the value of a property in a content mark.
-//
-// mark - handle to a content mark.
-// index - index of the property.
-//
-// Returns the type of the value, or FPDF_OBJECT_UNKNOWN in case of failure.
-FPDF_EXPORT FPDF_OBJECT_TYPE FPDF_CALLCONV
-FPDFPageObjMark_GetParamValueType(FPDF_PAGEOBJECTMARK mark,
- unsigned long index);
-
-// Experimental API.
// Get the type of the value of a property in a content mark by key.
//
// mark - handle to a content mark.
@@ -392,18 +381,6 @@ FPDFPageObjMark_GetParamValueTypeByKey(FPDF_PAGEOBJECTMARK mark,
FPDF_BYTESTRING key);
// Experimental API.
-// Get the value of a number property in a content mark as int.
-// FPDFPageObjMark_GetParamValueType() should have returned FPDF_OBJECT_NUMBER
-// for this property.
-//
-// mark - handle to a content mark.
-// index - index of the property.
-//
-// Returns the int value, 0 in case of failure.
-FPDF_EXPORT int FPDF_CALLCONV
-FPDFPageObjMark_GetParamIntValue(FPDF_PAGEOBJECTMARK mark, unsigned long index);
-
-// Experimental API.
// Get the value of a number property in a content mark by key as int.
// FPDFPageObjMark_GetParamValueType() should have returned FPDF_OBJECT_NUMBER
// for this property.
@@ -420,22 +397,6 @@ FPDFPageObjMark_GetParamIntValueByKey(FPDF_PAGEOBJECTMARK mark,
int* out_value);
// Experimental API.
-// Get the value of a string property in a content mark.
-// |buffer| is only modified if |buflen| is longer than the length of the value.
-//
-// mark - handle to a content mark.
-// index - index of the property.
-// buffer - buffer for holding the returned value in UTF16-LE.
-// buflen - length of the buffer.
-//
-// Returns the length of the value.
-FPDF_EXPORT unsigned long FPDF_CALLCONV
-FPDFPageObjMark_GetParamStringValue(FPDF_PAGEOBJECTMARK mark,
- unsigned long index,
- void* buffer,
- unsigned long buflen);
-
-// Experimental API.
// Get the value of a string property in a content mark by key.
// |buffer| is only modified if |buflen| is longer than the length of the value.
//