| Index: ppapi/c/private/ppb_pdf.h
|
| diff --git a/ppapi/c/private/ppb_pdf.h b/ppapi/c/private/ppb_pdf.h
|
| index fdd62fe3ffe7fb4b5aab548391a9dff3c79632b7..318c21d9d5e37fac2b889cf52c398b57bc86efe7 100644
|
| --- a/ppapi/c/private/ppb_pdf.h
|
| +++ b/ppapi/c/private/ppb_pdf.h
|
| @@ -169,6 +169,13 @@ struct PPB_PDF {
|
|
|
| // Sets the link currently under the cursor.
|
| void (*SetLinkUnderCursor)(PP_Instance instance, const char* url);
|
| +
|
| + // Gets pointers to both the mmap'd V8 snapshot files and their sizes.
|
| + // This is needed when loading V8's initial snapshot from external files.
|
| + void (*GetV8ExternalSnapshotData)(const char** natives_data_out,
|
| + int* natives_size_out,
|
| + const char** snapshot_data_out,
|
| + int* snapshot_size_out);
|
| };
|
|
|
| #endif // PPAPI_C_PRIVATE_PPB_PDF_H_
|
|
|