diff options
author | raymes@google.com <raymes@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-25 23:20:18 +0000 |
---|---|---|
committer | raymes@google.com <raymes@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-25 23:20:18 +0000 |
commit | 8f06e4df7c4bd0be8a6a75f95a1f7edf8d977f5c (patch) | |
tree | 2500b04f260caae53d0a0ec10eae0c6311243bc1 /ppapi/thunk/ppb_pdf_api.h | |
parent | deacb8e958455787a36a6a4b86e6658aa729b569 (diff) | |
download | chromium_src-8f06e4df7c4bd0be8a6a75f95a1f7edf8d977f5c.zip chromium_src-8f06e4df7c4bd0be8a6a75f95a1f7edf8d977f5c.tar.gz chromium_src-8f06e4df7c4bd0be8a6a75f95a1f7edf8d977f5c.tar.bz2 |
Add a flag for running the PDF plugin out of process.
Add a flag --out-of-process-pdf to run the PDF plugin out of process. This
also adds an interface for the plugin to determine whether it is running
out of process. We can remove this once we finish transitioning to the
out of process plugin.
BUG=303491
R=jam@chromium.org, yzshen@chromium.org
Review URL: https://codereview.chromium.org/78003006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237175 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/thunk/ppb_pdf_api.h')
-rw-r--r-- | ppapi/thunk/ppb_pdf_api.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ppapi/thunk/ppb_pdf_api.h b/ppapi/thunk/ppb_pdf_api.h index c5d276a..a23c527 100644 --- a/ppapi/thunk/ppb_pdf_api.h +++ b/ppapi/thunk/ppb_pdf_api.h @@ -31,6 +31,7 @@ class PPB_PDF_API { virtual void Print() = 0; virtual PP_Resource GetResourceImageForScale(PP_ResourceImage image_id, float scale) = 0; + virtual PP_Bool IsOutOfProcess() = 0; static const SingletonResourceID kSingletonResourceID = PDF_SINGLETON_ID; }; |