diff options
Diffstat (limited to 'content/public/browser/browser_ppapi_host.h')
-rw-r--r-- | content/public/browser/browser_ppapi_host.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/content/public/browser/browser_ppapi_host.h b/content/public/browser/browser_ppapi_host.h index febd0ea..f5aa11c 100644 --- a/content/public/browser/browser_ppapi_host.h +++ b/content/public/browser/browser_ppapi_host.h @@ -72,6 +72,11 @@ class CONTENT_EXPORT BrowserPpapiHost { virtual bool GetRenderViewIDsForInstance(PP_Instance instance, int* render_process_id, int* render_view_id) const = 0; + // Returns the name of the plugin. + virtual const std::string& GetPluginName() = 0; + + // Returns the user's profile data directory. + virtual const FilePath& GetProfileDataDirectory() = 0; }; } // namespace content |