diff options
Diffstat (limited to 'content/public')
-rw-r--r-- | content/public/browser/plugin_service.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/public/browser/plugin_service.h b/content/public/browser/plugin_service.h index 34806b3..5be3d08 100644 --- a/content/public/browser/plugin_service.h +++ b/content/public/browser/plugin_service.h @@ -113,6 +113,10 @@ class PluginService { // If the plugin with the given path is running, cleanly shuts it down. virtual void ForcePluginShutdown(const FilePath& plugin_path) = 0; + // Used to monitor plug-in stability. An unstable plug-in is one that has + // crashed more than a set number of times in a set time period. + virtual bool IsPluginUnstable(const FilePath& plugin_path) = 0; + // The following functions are wrappers around webkit::npapi::PluginList. // These must be used instead of those in order to ensure that we have a // single global list in the component build and so that we don't |