| Index: ppapi/cpp/private/pdf.cc
|
| diff --git a/ppapi/cpp/private/pdf.cc b/ppapi/cpp/private/pdf.cc
|
| index 52df60c710cafbf69baa4d5f2c68b0550cb61de0..17b0b4d2a712948535f0c813b9abf55430593562 100644
|
| --- a/ppapi/cpp/private/pdf.cc
|
| +++ b/ppapi/cpp/private/pdf.cc
|
| @@ -198,13 +198,15 @@ void PDF::SetLinkUnderCursor(const InstanceHandle& instance, const char* url) {
|
| }
|
|
|
| // static
|
| -void PDF::GetV8ExternalSnapshotData(const char** natives_data_out,
|
| +void PDF::GetV8ExternalSnapshotData(const InstanceHandle& instance,
|
| + const char** natives_data_out,
|
| int* natives_size_out,
|
| const char** snapshot_data_out,
|
| int* snapshot_size_out) {
|
| if (has_interface<PPB_PDF>()) {
|
| - get_interface<PPB_PDF>()->GetV8ExternalSnapshotData(natives_data_out,
|
| - natives_size_out, snapshot_data_out, snapshot_size_out);
|
| + get_interface<PPB_PDF>()->GetV8ExternalSnapshotData(instance.pp_instance(),
|
| + natives_data_out, natives_size_out, snapshot_data_out,
|
| + snapshot_size_out);
|
| return;
|
| }
|
| *natives_data_out = NULL;
|
|
|