| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef PPAPI_THUNK_PPB_PDF_API_H_ | 5 #ifndef PPAPI_THUNK_PPB_PDF_API_H_ |
| 6 #define PPAPI_THUNK_PPB_PDF_API_H_ | 6 #define PPAPI_THUNK_PPB_PDF_API_H_ |
| 7 | 7 |
| 8 #include "ppapi/c/private/ppb_pdf.h" | 8 #include "ppapi/c/private/ppb_pdf.h" |
| 9 #include "ppapi/shared_impl/singleton_resource_id.h" | 9 #include "ppapi/shared_impl/singleton_resource_id.h" |
| 10 | 10 |
| 11 namespace ppapi { | 11 namespace ppapi { |
| 12 namespace thunk { | 12 namespace thunk { |
| 13 | 13 |
| 14 class PPB_PDF_API { | 14 class PPB_PDF_API { |
| 15 public: | 15 public: |
| 16 virtual PP_Var GetLocalizedString(PP_ResourceString string_id) = 0; | |
| 17 virtual void SearchString(const unsigned short* input_string, | 16 virtual void SearchString(const unsigned short* input_string, |
| 18 const unsigned short* input_term, | 17 const unsigned short* input_term, |
| 19 bool case_sensitive, | 18 bool case_sensitive, |
| 20 PP_PrivateFindResult** results, | 19 PP_PrivateFindResult** results, |
| 21 int* count) = 0; | 20 int* count) = 0; |
| 22 virtual void DidStartLoading() = 0; | 21 virtual void DidStartLoading() = 0; |
| 23 virtual void DidStopLoading() = 0; | 22 virtual void DidStopLoading() = 0; |
| 24 virtual void SetContentRestriction(int restrictions) = 0; | 23 virtual void SetContentRestriction(int restrictions) = 0; |
| 25 virtual void UserMetricsRecordAction(const PP_Var& action) = 0; | 24 virtual void UserMetricsRecordAction(const PP_Var& action) = 0; |
| 26 virtual void HasUnsupportedFeature() = 0; | 25 virtual void HasUnsupportedFeature() = 0; |
| 27 virtual void SaveAs() = 0; | 26 virtual void SaveAs() = 0; |
| 28 virtual PP_Bool IsFeatureEnabled(PP_PDFFeature feature) = 0; | 27 virtual PP_Bool IsFeatureEnabled(PP_PDFFeature feature) = 0; |
| 29 virtual void Print() = 0; | 28 virtual void Print() = 0; |
| 30 virtual void SetSelectedText(const char* selected_text) = 0; | 29 virtual void SetSelectedText(const char* selected_text) = 0; |
| 31 virtual void SetLinkUnderCursor(const char* url) = 0; | 30 virtual void SetLinkUnderCursor(const char* url) = 0; |
| 32 virtual void GetV8ExternalSnapshotData(const char** natives_data_out, | 31 virtual void GetV8ExternalSnapshotData(const char** natives_data_out, |
| 33 int* natives_size_out, | 32 int* natives_size_out, |
| 34 const char** snapshot_data_out, | 33 const char** snapshot_data_out, |
| 35 int* snapshot_size_out) = 0; | 34 int* snapshot_size_out) = 0; |
| 36 | 35 |
| 37 static const SingletonResourceID kSingletonResourceID = PDF_SINGLETON_ID; | 36 static const SingletonResourceID kSingletonResourceID = PDF_SINGLETON_ID; |
| 38 }; | 37 }; |
| 39 | 38 |
| 40 } // namespace thunk | 39 } // namespace thunk |
| 41 } // namespace ppapi | 40 } // namespace ppapi |
| 42 | 41 |
| 43 #endif // PPAPI_THUNK_PPB_PDF_API_H_ | 42 #endif // PPAPI_THUNK_PPB_PDF_API_H_ |
| OLD | NEW |