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

Unified Diff: chrome/browser/gpu/three_d_api_observer.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/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
« no previous file with comments | « chrome/browser/gpu/gpu_feature_checker.h ('k') | chrome/browser/gpu/three_d_api_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gpu/three_d_api_observer.h
diff --git a/chrome/browser/gpu/three_d_api_observer.h b/chrome/browser/gpu/three_d_api_observer.h
index 9181d1c62df329d48bc07b041fb46456507e6b85..fb38da93e2eabbdb98a84621df1b965afd8ed253 100644
--- a/chrome/browser/gpu/three_d_api_observer.h
+++ b/chrome/browser/gpu/three_d_api_observer.h
@@ -11,13 +11,13 @@
class ThreeDAPIObserver : public content::GpuDataManagerObserver {
public:
ThreeDAPIObserver();
- virtual ~ThreeDAPIObserver();
+ ~ThreeDAPIObserver() override;
private:
- virtual void DidBlock3DAPIs(const GURL& url,
- int render_process_id,
- int render_view_id,
- content::ThreeDAPIType requester) override;
+ void DidBlock3DAPIs(const GURL& url,
+ int render_process_id,
+ int render_view_id,
+ content::ThreeDAPIType requester) override;
DISALLOW_COPY_AND_ASSIGN(ThreeDAPIObserver);
};
« no previous file with comments | « chrome/browser/gpu/gpu_feature_checker.h ('k') | chrome/browser/gpu/three_d_api_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698