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

Unified Diff: content/browser/android/browser_surface_texture_manager.h

Issue 897773002: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 10 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 | « no previous file | content/browser/android/composited_touch_handle_drawable.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/android/browser_surface_texture_manager.h
diff --git a/content/browser/android/browser_surface_texture_manager.h b/content/browser/android/browser_surface_texture_manager.h
index 7776d30ee7f4cc2b0a5dc80e80dd4cf79efe4851..959d270548874b736c745db4a735cf4b5957967c 100644
--- a/content/browser/android/browser_surface_texture_manager.h
+++ b/content/browser/android/browser_surface_texture_manager.h
@@ -15,20 +15,18 @@ class BrowserSurfaceTextureManager : public SurfaceTextureManager,
public SurfaceTexturePeer {
public:
BrowserSurfaceTextureManager();
- virtual ~BrowserSurfaceTextureManager();
+ ~BrowserSurfaceTextureManager() override;
// Overridden from SurfaceTextureManager:
- virtual void RegisterSurfaceTexture(
- int surface_texture_id,
- int client_id,
- gfx::SurfaceTexture* surface_texture) override;
- virtual void UnregisterSurfaceTexture(int surface_texture_id,
- int client_id) override;
- virtual gfx::AcceleratedWidget AcquireNativeWidgetForSurfaceTexture(
+ void RegisterSurfaceTexture(int surface_texture_id,
+ int client_id,
+ gfx::SurfaceTexture* surface_texture) override;
+ void UnregisterSurfaceTexture(int surface_texture_id, int client_id) override;
+ gfx::AcceleratedWidget AcquireNativeWidgetForSurfaceTexture(
int surface_texture_id) override;
// Overridden from SurfaceTexturePeer:
- virtual void EstablishSurfaceTexturePeer(
+ void EstablishSurfaceTexturePeer(
base::ProcessHandle render_process_handle,
scoped_refptr<gfx::SurfaceTexture> surface_texture,
int render_frame_id,
« no previous file with comments | « no previous file | content/browser/android/composited_touch_handle_drawable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698