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

Unified Diff: content/browser/renderer_host/image_transport_factory_android.cc

Issue 616603004: Replacing the OVERRIDE with override and FINAL with final in content/browser/renderer_host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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/renderer_host/image_transport_factory_android.cc
diff --git a/content/browser/renderer_host/image_transport_factory_android.cc b/content/browser/renderer_host/image_transport_factory_android.cc
index 17664a8f94e838e06332d65a5477b1ac987c6108..41e315608e0702713b9d4c06cf8fb91498add534 100644
--- a/content/browser/renderer_host/image_transport_factory_android.cc
+++ b/content/browser/renderer_host/image_transport_factory_android.cc
@@ -24,7 +24,7 @@ class GLContextLostListener
: public blink::WebGraphicsContext3D::WebGraphicsContextLostCallback {
public:
// WebGraphicsContextLostCallback implementation.
- virtual void onContextLost() OVERRIDE;
+ virtual void onContextLost() override;
private:
static void DidLoseContext();
};
@@ -38,8 +38,8 @@ class CmdBufferImageTransportFactory : public ImageTransportFactoryAndroid {
CmdBufferImageTransportFactory();
virtual ~CmdBufferImageTransportFactory();
- virtual GLHelper* GetGLHelper() OVERRIDE;
- virtual uint32 GetChannelID() OVERRIDE {
+ virtual GLHelper* GetGLHelper() override;
+ virtual uint32 GetChannelID() override {
return BrowserGpuChannelHostFactory::instance()->GetGpuChannelId();
}

Powered by Google App Engine
This is Rietveld 408576698