Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Side by Side Diff: ppapi/thunk/ppb_pdf_api.h

Issue 554893002: [WORK_IN_PROGRESS] PDF::Save() fix for out-of-process-pdf. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: better fix for constrained windows Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ppapi/proxy/ppapi_messages.h ('k') | ppapi/thunk/ppb_pdf_thunk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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; 16 virtual PP_Var GetLocalizedString(PP_ResourceString string_id) = 0;
17 virtual PP_Resource GetResourceImage(PP_ResourceImage image_id) = 0; 17 virtual PP_Resource GetResourceImage(PP_ResourceImage image_id) = 0;
18 virtual void SearchString(const unsigned short* input_string, 18 virtual void SearchString(const unsigned short* input_string,
19 const unsigned short* input_term, 19 const unsigned short* input_term,
20 bool case_sensitive, 20 bool case_sensitive,
21 PP_PrivateFindResult** results, 21 PP_PrivateFindResult** results,
22 int* count) = 0; 22 int* count) = 0;
23 virtual void DidStartLoading() = 0; 23 virtual void DidStartLoading() = 0;
24 virtual void DidStopLoading() = 0; 24 virtual void DidStopLoading() = 0;
25 virtual void SetContentRestriction(int restrictions) = 0; 25 virtual void SetContentRestriction(int restrictions) = 0;
26 virtual void HistogramPDFPageCount(int count) = 0; 26 virtual void HistogramPDFPageCount(int count) = 0;
27 virtual void UserMetricsRecordAction(const PP_Var& action) = 0; 27 virtual void UserMetricsRecordAction(const PP_Var& action) = 0;
28 virtual void HasUnsupportedFeature() = 0; 28 virtual void HasUnsupportedFeature() = 0;
29 virtual void SaveAs() = 0; 29 virtual void SaveAs(const PP_Var& url) = 0;
30 virtual PP_Bool IsFeatureEnabled(PP_PDFFeature feature) = 0; 30 virtual PP_Bool IsFeatureEnabled(PP_PDFFeature feature) = 0;
31 virtual void Print() = 0; 31 virtual void Print() = 0;
32 virtual PP_Resource GetResourceImageForScale(PP_ResourceImage image_id, 32 virtual PP_Resource GetResourceImageForScale(PP_ResourceImage image_id,
33 float scale) = 0; 33 float scale) = 0;
34 virtual PP_Bool IsOutOfProcess() = 0; 34 virtual PP_Bool IsOutOfProcess() = 0;
35 virtual void SetSelectedText(const char* selected_text) = 0; 35 virtual void SetSelectedText(const char* selected_text) = 0;
36 virtual void SetLinkUnderCursor(const char* url) = 0; 36 virtual void SetLinkUnderCursor(const char* url) = 0;
37 37
38 static const SingletonResourceID kSingletonResourceID = PDF_SINGLETON_ID; 38 static const SingletonResourceID kSingletonResourceID = PDF_SINGLETON_ID;
39 }; 39 };
40 40
41 } // namespace thunk 41 } // namespace thunk
42 } // namespace ppapi 42 } // namespace ppapi
43 43
44 #endif // PPAPI_THUNK_PPB_PDF_API_H_ 44 #endif // PPAPI_THUNK_PPB_PDF_API_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppapi_messages.h ('k') | ppapi/thunk/ppb_pdf_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698