Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Unified Diff: content/plugin/webplugin_accelerated_surface_proxy_mac.h

Issue 671663002: Standardize usage of virtual/override/final in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/plugin/plugin_thread.cc ('k') | content/plugin/webplugin_delegate_stub.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/plugin/webplugin_accelerated_surface_proxy_mac.h
diff --git a/content/plugin/webplugin_accelerated_surface_proxy_mac.h b/content/plugin/webplugin_accelerated_surface_proxy_mac.h
index 705d9efed1ef55ca46d7790795190ed5e0705b4c..2374ba3ef185b8de9e53ff188ce9c99da330c4f7 100644
--- a/content/plugin/webplugin_accelerated_surface_proxy_mac.h
+++ b/content/plugin/webplugin_accelerated_surface_proxy_mac.h
@@ -25,13 +25,13 @@ class WebPluginAcceleratedSurfaceProxy : public WebPluginAcceleratedSurface {
WebPluginProxy* plugin_proxy,
gfx::GpuPreference gpu_preference);
- virtual ~WebPluginAcceleratedSurfaceProxy();
+ ~WebPluginAcceleratedSurfaceProxy() override;
// WebPluginAcceleratedSurface implementation.
- virtual void SetSize(const gfx::Size& size) override;
- virtual CGLContextObj context() override;
- virtual void StartDrawing() override;
- virtual void EndDrawing() override;
+ void SetSize(const gfx::Size& size) override;
+ CGLContextObj context() override;
+ void StartDrawing() override;
+ void EndDrawing() override;
private:
WebPluginAcceleratedSurfaceProxy(WebPluginProxy* plugin_proxy,
« no previous file with comments | « content/plugin/plugin_thread.cc ('k') | content/plugin/webplugin_delegate_stub.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698