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

Unified Diff: ui/gl/gl_glx_api_implementation.h

Issue 683113005: Update from chromium https://crrev.com/302282 (Closed) Base URL: git@github.com:domokit/mojo.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 | « ui/gl/gl_gl_api_implementation.cc ('k') | ui/gl/gl_image_egl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_glx_api_implementation.h
diff --git a/ui/gl/gl_glx_api_implementation.h b/ui/gl/gl_glx_api_implementation.h
index 634db4eaf4d99663a85365b720dc0f3c5264dccb..30a70cf08ba5d318c86c9951b1ab816da1dee31c 100644
--- a/ui/gl/gl_glx_api_implementation.h
+++ b/ui/gl/gl_glx_api_implementation.h
@@ -29,7 +29,7 @@ class GL_EXPORT GLXApiBase : public GLXApi {
protected:
GLXApiBase();
- virtual ~GLXApiBase();
+ ~GLXApiBase() override;
void InitializeBase(DriverGLX* driver);
DriverGLX* driver_;
@@ -38,7 +38,7 @@ class GL_EXPORT GLXApiBase : public GLXApi {
class GL_EXPORT RealGLXApi : public GLXApiBase {
public:
RealGLXApi();
- virtual ~RealGLXApi();
+ ~RealGLXApi() override;
void Initialize(DriverGLX* driver);
};
@@ -46,7 +46,7 @@ class GL_EXPORT RealGLXApi : public GLXApiBase {
class GL_EXPORT TraceGLXApi : public GLXApi {
public:
TraceGLXApi(GLXApi* glx_api) : glx_api_(glx_api) { }
- virtual ~TraceGLXApi();
+ ~TraceGLXApi() override;
// Include the auto-generated part of this class. We split this because
// it means we can easily edit the non-auto generated parts right here in
« no previous file with comments | « ui/gl/gl_gl_api_implementation.cc ('k') | ui/gl/gl_image_egl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698