| Index: content/browser/ppapi_plugin_process_host.h
|
| diff --git a/content/browser/ppapi_plugin_process_host.h b/content/browser/ppapi_plugin_process_host.h
|
| index e3bd540551e1b51e6ada5158bea918e64b71ea46..0c6fe0b3dc9386f79c98cb7a65b3fabd1e5f25be 100644
|
| --- a/content/browser/ppapi_plugin_process_host.h
|
| +++ b/content/browser/ppapi_plugin_process_host.h
|
| @@ -52,15 +52,23 @@ class PpapiPluginProcessHost : public content::BrowserChildProcessHostDelegate,
|
|
|
| // Returns true if the current connection is off-the-record.
|
| virtual bool OffTheRecord() = 0;
|
| +
|
| + protected:
|
| + virtual ~Client() {}
|
| };
|
|
|
| class PluginClient : public Client {
|
| public:
|
| // Returns the resource context for the renderer requesting the channel.
|
| virtual content::ResourceContext* GetResourceContext() = 0;
|
| +
|
| + protected:
|
| + virtual ~PluginClient() {}
|
| };
|
|
|
| class BrokerClient : public Client {
|
| + protected:
|
| + virtual ~BrokerClient() {}
|
| };
|
|
|
| virtual ~PpapiPluginProcessHost();
|
|
|