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

Unified Diff: content/browser/compositor/io_surface_context_mac.h

Issue 667943003: Standardize usage of virtual/override/final in content/browser/ (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
Index: content/browser/compositor/io_surface_context_mac.h
diff --git a/content/browser/compositor/io_surface_context_mac.h b/content/browser/compositor/io_surface_context_mac.h
index 2654711668b37028e1581a7fde60af4dc8d5ee62..7fc466dd033bdc40e72fbed689f4258041c8a625 100644
--- a/content/browser/compositor/io_surface_context_mac.h
+++ b/content/browser/compositor/io_surface_context_mac.h
@@ -45,7 +45,7 @@ class IOSurfaceContext
CGLContextObj cgl_context() const { return cgl_context_; }
// content::GpuDataManagerObserver implementation.
- virtual void OnGpuSwitching() override;
+ void OnGpuSwitching() override;
private:
friend class base::RefCounted<IOSurfaceContext>;
@@ -53,7 +53,7 @@ class IOSurfaceContext
IOSurfaceContext(
Type type,
base::ScopedTypeRef<CGLContextObj> clg_context_strong);
- virtual ~IOSurfaceContext();
+ ~IOSurfaceContext() override;
Type type_;
base::ScopedTypeRef<CGLContextObj> cgl_context_;

Powered by Google App Engine
This is Rietveld 408576698