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

Unified Diff: gpu/command_buffer/service/gles2_cmd_decoder.cc

Issue 7477008: Remove explicit keyword from multi-argument constructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 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 | « content/common/process_watcher_posix.cc ('k') | ipc/ipc_sync_channel_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/service/gles2_cmd_decoder.cc
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder.cc b/gpu/command_buffer/service/gles2_cmd_decoder.cc
index 63f73a9aef2c79d4310d40dcf5491980c2cc856f..06f7aad9a54a613c5c88261ade3084e980a2104b 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder.cc
+++ b/gpu/command_buffer/service/gles2_cmd_decoder.cc
@@ -222,8 +222,8 @@ class ScopedFrameBufferBinder {
// if it is bound or enforce_internal_framebuffer is true.
class ScopedResolvedFrameBufferBinder {
public:
- explicit ScopedResolvedFrameBufferBinder(GLES2DecoderImpl* decoder,
- bool enforce_internal_framebuffer);
+ ScopedResolvedFrameBufferBinder(GLES2DecoderImpl* decoder,
+ bool enforce_internal_framebuffer);
~ScopedResolvedFrameBufferBinder();
private:
@@ -447,8 +447,7 @@ GLES2Decoder::~GLES2Decoder() {
class GLES2DecoderImpl : public base::SupportsWeakPtr<GLES2DecoderImpl>,
public GLES2Decoder {
public:
- explicit GLES2DecoderImpl(SurfaceManager* surface_manager,
- ContextGroup* group);
+ GLES2DecoderImpl(SurfaceManager* surface_manager, ContextGroup* group);
// Overridden from AsyncAPIInterface.
virtual Error DoCommand(unsigned int command,
« no previous file with comments | « content/common/process_watcher_posix.cc ('k') | ipc/ipc_sync_channel_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698