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

Unified Diff: ui/gl/gl_egl_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_context_glx.h ('k') | ui/gl/gl_gl_api_implementation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_egl_api_implementation.h
diff --git a/ui/gl/gl_egl_api_implementation.h b/ui/gl/gl_egl_api_implementation.h
index aef46ee31c6c33d43a506012895257933ac5bb9b..e58860cf445a483e855dbc94623e65edc7512d82 100644
--- a/ui/gl/gl_egl_api_implementation.h
+++ b/ui/gl/gl_egl_api_implementation.h
@@ -29,7 +29,7 @@ class GL_EXPORT EGLApiBase : public EGLApi {
protected:
EGLApiBase();
- virtual ~EGLApiBase();
+ ~EGLApiBase() override;
void InitializeBase(DriverEGL* driver);
DriverEGL* driver_;
@@ -38,7 +38,7 @@ class GL_EXPORT EGLApiBase : public EGLApi {
class GL_EXPORT RealEGLApi : public EGLApiBase {
public:
RealEGLApi();
- virtual ~RealEGLApi();
+ ~RealEGLApi() override;
void Initialize(DriverEGL* driver);
};
@@ -47,7 +47,7 @@ class GL_EXPORT RealEGLApi : public EGLApiBase {
class GL_EXPORT TraceEGLApi : public EGLApi {
public:
TraceEGLApi(EGLApi* egl_api) : egl_api_(egl_api) { }
- virtual ~TraceEGLApi();
+ ~TraceEGLApi() 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_context_glx.h ('k') | ui/gl/gl_gl_api_implementation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698