Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef PPAPI_C_PRIVATE_PPP_PDF_H_ | 5 #ifndef PPAPI_C_PRIVATE_PPP_PDF_H_ |
| 6 #define PPAPI_C_PRIVATE_PPP_PDF_H_ | 6 #define PPAPI_C_PRIVATE_PPP_PDF_H_ |
| 7 | 7 |
| 8 #include "ppapi/c/dev/pp_print_settings_dev.h" | |
| 8 #include "ppapi/c/pp_instance.h" | 9 #include "ppapi/c/pp_instance.h" |
| 9 #include "ppapi/c/pp_point.h" | 10 #include "ppapi/c/pp_point.h" |
| 10 #include "ppapi/c/pp_var.h" | 11 #include "ppapi/c/pp_var.h" |
| 11 | 12 |
| 12 #define PPP_PDF_INTERFACE_1 "PPP_Pdf;1" | 13 #define PPP_PDF_INTERFACE_2 "PPP_Pdf;2" |
|
dmichael (off chromium)
2014/09/22 18:11:51
For something this small we would usually go to 1.
Nikhil
2014/09/23 10:32:28
Done.
| |
| 13 #define PPP_PDF_INTERFACE PPP_PDF_INTERFACE_1 | 14 #define PPP_PDF_INTERFACE PPP_PDF_INTERFACE_2 |
| 14 | 15 |
| 15 typedef enum { | 16 typedef enum { |
| 16 // Rotates the page 90 degrees clockwise from its current orientation. | 17 // Rotates the page 90 degrees clockwise from its current orientation. |
| 17 PP_PRIVATEPAGETRANSFORMTYPE_ROTATE_90_CW, | 18 PP_PRIVATEPAGETRANSFORMTYPE_ROTATE_90_CW, |
| 18 // Rotates the page 90 degrees counterclockwise from its current orientation. | 19 // Rotates the page 90 degrees counterclockwise from its current orientation. |
| 19 PP_PRIVATEPAGETRANSFORMTYPE_ROTATE_90_CCW | 20 PP_PRIVATEPAGETRANSFORMTYPE_ROTATE_90_CCW |
| 20 } PP_PrivatePageTransformType; | 21 } PP_PrivatePageTransformType; |
| 21 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_PrivatePageTransformType, 4); | 22 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_PrivatePageTransformType, 4); |
| 22 | 23 |
| 23 struct PPP_Pdf_1 { | 24 struct PPP_Pdf_2 { |
| 24 // Returns an absolute URL if the position is over a link. | 25 // Returns an absolute URL if the position is over a link. |
| 25 PP_Var (*GetLinkAtPosition)(PP_Instance instance, | 26 PP_Var (*GetLinkAtPosition)(PP_Instance instance, |
| 26 PP_Point point); | 27 PP_Point point); |
| 27 | 28 |
| 28 // Requests that the plugin apply the given transform to its view. | 29 // Requests that the plugin apply the given transform to its view. |
| 29 void (*Transform)(PP_Instance instance, PP_PrivatePageTransformType type); | 30 void (*Transform)(PP_Instance instance, PP_PrivatePageTransformType type); |
| 31 | |
| 32 // Return true if print preset options are updated from document. | |
| 33 PP_Bool (*GetPrintPresetOptionsFromDocument)( | |
| 34 PP_Instance instance, | |
| 35 PP_PrintPresetOptions_Dev& options); | |
| 30 }; | 36 }; |
| 31 | 37 |
| 32 typedef PPP_Pdf_1 PPP_Pdf; | 38 typedef PPP_Pdf_2 PPP_Pdf; |
| 33 | 39 |
| 34 #endif // PPAPI_C_PRIVATE_PPP_PDF_H_ | 40 #endif // PPAPI_C_PRIVATE_PPP_PDF_H_ |
| OLD | NEW |