Elim cr-checkbox
[chromium-blink-merge.git] / ppapi / proxy / pdf_resource.h
blob253f6198607264021ca28d925b69b5a8d71458b9
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/proxy/connection.h"
13 #include "ppapi/proxy/plugin_resource.h"
14 #include "ppapi/proxy/ppapi_proxy_export.h"
15 #include "ppapi/thunk/ppb_pdf_api.h"
17 namespace ppapi {
18 namespace proxy {
20 class PluginDispatcher;
22 class PPAPI_PROXY_EXPORT PDFResource
23 : public PluginResource,
24 public thunk::PPB_PDF_API {
25 public:
26 PDFResource(Connection connection, PP_Instance instance);
27 ~PDFResource() override;
29 // For unittesting with a given locale.
30 void SetLocaleForTest(const std::string& locale) {
31 locale_ = locale;
34 // Resource override.
35 thunk::PPB_PDF_API* AsPPB_PDF_API() override;
37 // PPB_PDF_API implementation.
38 void SearchString(const unsigned short* input_string,
39 const unsigned short* input_term,
40 bool case_sensitive,
41 PP_PrivateFindResult** results,
42 int* count) override;
43 void DidStartLoading() override;
44 void DidStopLoading() override;
45 void SetContentRestriction(int restrictions) override;
46 void UserMetricsRecordAction(const PP_Var& action) override;
47 void HasUnsupportedFeature() override;
48 void Print() override;
49 void SaveAs() override;
50 PP_Bool IsFeatureEnabled(PP_PDFFeature feature) override;
51 void SetSelectedText(const char* selected_text) override;
52 void SetLinkUnderCursor(const char* url) override;
53 void GetV8ExternalSnapshotData(const char** natives_data_out,
54 int* natives_size_out,
55 const char** snapshot_data_out,
56 int* snapshot_size_out) override;
58 private:
59 std::string locale_;
61 DISALLOW_COPY_AND_ASSIGN(PDFResource);
64 } // namespace proxy
65 } // namespace ppapi
67 #endif // PPAPI_PROXY_PDF_RESOURCE_H_