diff options
author | raymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-11 21:36:05 +0000 |
---|---|---|
committer | raymes@chromium.org <raymes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-11 21:36:05 +0000 |
commit | a245006a5f6f1c5abc7f3f7aecc56444847bfa48 (patch) | |
tree | 5f53ef9eb4b9b6db2dea148708747f72d72b8ed7 /content/public/browser/browser_ppapi_host.h | |
parent | a53f5a49c0705cdb54487555aac3f28f49bf3943 (diff) | |
download | chromium_src-a245006a5f6f1c5abc7f3f7aecc56444847bfa48.zip chromium_src-a245006a5f6f1c5abc7f3f7aecc56444847bfa48.tar.gz chromium_src-a245006a5f6f1c5abc7f3f7aecc56444847bfa48.tar.bz2 |
Implement GetVoucherFile and GetHmonitor functions for PPB_Flash_DRM
This adds 2 functions to PPB_Flash_DRM which are used for Flash DRM-related
features. GetVoucherFile() returns a FileRef to a flash voucher file. This file
will be dropped in to the tree next to the flash DLL and will be named
plugin.vch.
GetHmonitor returns the HMONITOR (on windows only) associated with the monitor displaying the instance. cpu@ will implement the backend for this.
BUG=242241
R=cpu@chromium.org, jam@chromium.org, jschuh@chromium.org, yzshen@chromium.org
Review URL: https://codereview.chromium.org/15079003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205640 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/browser/browser_ppapi_host.h')
-rw-r--r-- | content/public/browser/browser_ppapi_host.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/content/public/browser/browser_ppapi_host.h b/content/public/browser/browser_ppapi_host.h index b831e09..dbf09bb 100644 --- a/content/public/browser/browser_ppapi_host.h +++ b/content/public/browser/browser_ppapi_host.h @@ -77,6 +77,9 @@ class CONTENT_EXPORT BrowserPpapiHost { // Returns the name of the plugin. virtual const std::string& GetPluginName() = 0; + // Returns the path of the plugin. + virtual const base::FilePath& GetPluginPath() = 0; + // Returns the user's profile data directory. virtual const base::FilePath& GetProfileDataDirectory() = 0; |