| Index: ppapi/proxy/host_dispatcher.h
|
| diff --git a/ppapi/proxy/host_dispatcher.h b/ppapi/proxy/host_dispatcher.h
|
| index 70dd08a2a47ee3670c2af59653e77f23b8b1899f..dce39a324820916746bdb747e1cda4b76a4ca7e3 100644
|
| --- a/ppapi/proxy/host_dispatcher.h
|
| +++ b/ppapi/proxy/host_dispatcher.h
|
| @@ -32,14 +32,15 @@ class PPAPI_PROXY_EXPORT HostDispatcher : public Dispatcher {
|
| // actually represents a stack of blocking messages.
|
| class SyncMessageStatusReceiver : public IPC::ChannelProxy::MessageFilter {
|
| public:
|
| - virtual ~SyncMessageStatusReceiver() {}
|
| -
|
| // Notification that a sync message is about to be sent out.
|
| virtual void BeginBlockOnSyncMessage() = 0;
|
|
|
| // Notification that a sync message reply was received and the dispatcher
|
| // is no longer blocked on a sync message.
|
| virtual void EndBlockOnSyncMessage() = 0;
|
| +
|
| + protected:
|
| + virtual ~SyncMessageStatusReceiver() {}
|
| };
|
|
|
| // Constructor for the renderer side. This will take a reference to the
|
|
|