| Index: components/pdf/renderer/pepper_pdf_host.h
|
| diff --git a/components/pdf/renderer/pepper_pdf_host.h b/components/pdf/renderer/pepper_pdf_host.h
|
| index 7787229a6fc139de5aa3a5998161fa7ff7fd852e..e5f6713578056049cd564ed302483fc89f592132 100644
|
| --- a/components/pdf/renderer/pepper_pdf_host.h
|
| +++ b/components/pdf/renderer/pepper_pdf_host.h
|
| @@ -89,6 +89,22 @@ class PepperPDFHost : public ppapi::host::ResourceHost {
|
| const base::string16& selected_text);
|
| int32_t OnHostMsgSetLinkUnderCursor(ppapi::host::HostMessageContext* context,
|
| const std::string& url);
|
| + int32_t OnHostMsgSetAccessibilityViewportInfo(
|
| + ppapi::host::HostMessageContext* context,
|
| + const PP_PrivateAccessibilityViewportInfo& viewport_info);
|
| + int32_t OnHostMsgSetAccessibilityDocInfo(
|
| + ppapi::host::HostMessageContext* context,
|
| + const PP_PrivateAccessibilityDocInfo& doc_info);
|
| + int32_t OnHostMsgSetAccessibilityPageInfo(
|
| + ppapi::host::HostMessageContext* context,
|
| + uint32_t page_index,
|
| + const PP_PrivateAccessibilityPageInfo& page_info);
|
| + int32_t OnHostMsgSetAccessibilityTextRunInfo(
|
| + ppapi::host::HostMessageContext* context,
|
| + uint32_t page_index,
|
| + uint32_t text_run_index,
|
| + const PP_PrivateAccessibilityTextRunInfo& text_run_info,
|
| + const std::vector<PP_PrivateAccessibilityCharInfo>& chars);
|
|
|
| content::RendererPpapiHost* host_;
|
|
|
|
|