1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef PPAPI_PROXY_PDF_RESOURCE_H_
6 #define PPAPI_PROXY_PDF_RESOURCE_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "ppapi/c/pp_instance.h"
11 #include "ppapi/c/pp_var.h"
12 #include "ppapi/c/private/ppb_flash.h"
13 #include "ppapi/proxy/connection.h"
14 #include "ppapi/proxy/plugin_resource.h"
15 #include "ppapi/proxy/ppapi_proxy_export.h"
16 #include "ppapi/thunk/ppb_pdf_api.h"
21 class PluginDispatcher
;
23 class PPAPI_PROXY_EXPORT PDFResource
24 : public PluginResource
,
25 public thunk::PPB_PDF_API
{
27 PDFResource(Connection connection
, PP_Instance instance
);
28 ~PDFResource() override
;
30 // For unittesting with a given locale.
31 void SetLocaleForTest(const std::string
& locale
) {
36 thunk::PPB_PDF_API
* AsPPB_PDF_API() override
;
38 // PPB_PDF_API implementation.
39 PP_Var
GetLocalizedString(PP_ResourceString string_id
) override
;
40 void SearchString(const unsigned short* input_string
,
41 const unsigned short* input_term
,
43 PP_PrivateFindResult
** results
,
45 void DidStartLoading() override
;
46 void DidStopLoading() override
;
47 void SetContentRestriction(int restrictions
) override
;
48 void HistogramPDFPageCount(int count
) override
;
49 void UserMetricsRecordAction(const PP_Var
& action
) override
;
50 void HasUnsupportedFeature() override
;
51 void Print() override
;
52 void SaveAs() override
;
53 PP_Bool
IsFeatureEnabled(PP_PDFFeature feature
) override
;
54 PP_Resource
GetResourceImageForScale(PP_ResourceImage image_id
,
55 float scale
) override
;
56 PP_Resource
GetResourceImage(PP_ResourceImage image_id
) override
;
57 PP_Bool
IsOutOfProcess() override
;
58 void SetSelectedText(const char* selected_text
) override
;
59 void SetLinkUnderCursor(const char* url
) override
;
60 void GetV8ExternalSnapshotData(const char** natives_data_out
,
61 int* natives_size_out
,
62 const char** snapshot_data_out
,
63 int* snapshot_size_out
) override
;
68 DISALLOW_COPY_AND_ASSIGN(PDFResource
);
74 #endif // PPAPI_PROXY_PDF_RESOURCE_H_