summaryrefslogtreecommitdiffstats
path: root/ui/gfx/gl/gl_surface_egl.h
diff options
context:
space:
mode:
authordilmah@chromium.org <dilmah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-26 17:25:25 +0000
committerdilmah@chromium.org <dilmah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-26 17:25:25 +0000
commite7e3803e3935dad91d825df538b3a2de3835d4c6 (patch)
tree1b701b8cb09249c147dec3df3f38a7c4ff025f19 /ui/gfx/gl/gl_surface_egl.h
parent13c4ebf4808f7c20a09f4f64e6831473dffd27a7 (diff)
downloadchromium_src-e7e3803e3935dad91d825df538b3a2de3835d4c6.zip
chromium_src-e7e3803e3935dad91d825df538b3a2de3835d4c6.tar.gz
chromium_src-e7e3803e3935dad91d825df538b3a2de3835d4c6.tar.bz2
Remove explicit keyword from multi-argument (w/o default values) constructors
BUG=None TEST=None Review URL: http://codereview.chromium.org/7477008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94115 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/gl/gl_surface_egl.h')
-rw-r--r--ui/gfx/gl/gl_surface_egl.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/gfx/gl/gl_surface_egl.h b/ui/gfx/gl/gl_surface_egl.h
index 19e7f4f..1b03a75 100644
--- a/ui/gfx/gl/gl_surface_egl.h
+++ b/ui/gfx/gl/gl_surface_egl.h
@@ -49,8 +49,7 @@ protected:
// Encapsulates an EGL surface bound to a view.
class NativeViewGLSurfaceEGL : public GLSurfaceEGL {
public:
- explicit NativeViewGLSurfaceEGL(bool software,
- gfx::PluginWindowHandle window);
+ NativeViewGLSurfaceEGL(bool software, gfx::PluginWindowHandle window);
virtual ~NativeViewGLSurfaceEGL();
// Implement GLSurface.
@@ -71,7 +70,7 @@ class NativeViewGLSurfaceEGL : public GLSurfaceEGL {
// Encapsulates a pbuffer EGL surface.
class PbufferGLSurfaceEGL : public GLSurfaceEGL {
public:
- explicit PbufferGLSurfaceEGL(bool software, const gfx::Size& size);
+ PbufferGLSurfaceEGL(bool software, const gfx::Size& size);
virtual ~PbufferGLSurfaceEGL();
// Implement GLSurface.