summaryrefslogtreecommitdiffstats
path: root/ppapi/api
diff options
context:
space:
mode:
authorraymes <raymes@chromium.org>2015-01-15 19:29:21 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-16 03:30:05 +0000
commit8f4c7a23c2aa8ad83fd4e87d0f9908b376246012 (patch)
treed504d8093419bffc4ad2e50dc1a020b3a32b0799 /ppapi/api
parent8a7bd07d02b176532e24d71776fe359bc949146d (diff)
downloadchromium_src-8f4c7a23c2aa8ad83fd4e87d0f9908b376246012.zip
chromium_src-8f4c7a23c2aa8ad83fd4e87d0f9908b376246012.tar.gz
chromium_src-8f4c7a23c2aa8ad83fd4e87d0f9908b376246012.tar.bz2
Remove unused fields from PP_PdfPrintPresetOptions_Dev
Work was started which would use these fields to convey information to the printing system but this work was never finished (see https://code.google.com/p/chromium/issues/detail?id=169120). This fields are never initialized. BUG=448798 Review URL: https://codereview.chromium.org/828233004 Cr-Commit-Position: refs/heads/master@{#311831}
Diffstat (limited to 'ppapi/api')
-rw-r--r--ppapi/api/dev/pp_print_settings_dev.idl14
1 files changed, 0 insertions, 14 deletions
diff --git a/ppapi/api/dev/pp_print_settings_dev.idl b/ppapi/api/dev/pp_print_settings_dev.idl
index df57364..fafcc08 100644
--- a/ppapi/api/dev/pp_print_settings_dev.idl
+++ b/ppapi/api/dev/pp_print_settings_dev.idl
@@ -30,14 +30,6 @@ enum PP_PrintScalingOption_Dev {
PP_PRINTSCALINGOPTION_SOURCE_SIZE = 2
};
-[assert_size(4)]
-enum PP_PrintDuplexMode_Dev {
- PP_PRINTDUPLEXMODE_NONE = 0,
- PP_PRINTDUPLEXMODE_SIMPLEX = 1,
- PP_PRINTDUPLEXMODE_LONG_EDGE = 2,
- PP_PRINTDUPLEXMODE_SHORT_EDGE = 3
-};
-
[assert_size(60)]
struct PP_PrintSettings_Dev {
/** This is the size of the printable area in points (1/72 of an inch). */
@@ -51,9 +43,3 @@ struct PP_PrintSettings_Dev {
/** Note that Chrome currently only supports PDF printing. */
PP_PrintOutputFormat_Dev format;
};
-
-[assert_size(8)]
-struct PP_PrintRange_Dev {
- int32_t from;
- int32_t to;
-};