| Index: ppapi/proxy/plugin_resource_var.h
|
| diff --git a/ppapi/proxy/plugin_resource_var.h b/ppapi/proxy/plugin_resource_var.h
|
| index edfe47b4edeb898559e7b52e976d8aa9a097c6df..461dbfddb78c72272177726c5bf9282a8c88a7ee 100644
|
| --- a/ppapi/proxy/plugin_resource_var.h
|
| +++ b/ppapi/proxy/plugin_resource_var.h
|
| @@ -22,13 +22,13 @@ class PPAPI_PROXY_EXPORT PluginResourceVar : public ppapi::ResourceVar {
|
| explicit PluginResourceVar(ppapi::Resource* resource);
|
|
|
| // ResourceVar override.
|
| - virtual PP_Resource GetPPResource() const override;
|
| - virtual bool IsPending() const override;
|
| + PP_Resource GetPPResource() const override;
|
| + bool IsPending() const override;
|
|
|
| scoped_refptr<ppapi::Resource> resource() const { return resource_; }
|
|
|
| protected:
|
| - virtual ~PluginResourceVar();
|
| + ~PluginResourceVar() override;
|
|
|
| private:
|
| // If NULL, this represents the PP_Resource 0.
|
|
|