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

Unified Diff: gpu/command_buffer/client/share_group.cc

Issue 11419224: Add missing (and remove superfluous) 'explicit' from constructors. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + remove non-straightforward changes Created 7 years, 11 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 | « gpu/command_buffer/client/query_tracker.h ('k') | gpu/command_buffer/client/transfer_buffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/share_group.cc
diff --git a/gpu/command_buffer/client/share_group.cc b/gpu/command_buffer/client/share_group.cc
index 041d79d1c4f3a5da8dcab3e18af2bad1f83f86f9..6f1cb214d7254332018a197c34a65baa9186148c 100644
--- a/gpu/command_buffer/client/share_group.cc
+++ b/gpu/command_buffer/client/share_group.cc
@@ -117,7 +117,7 @@ class NonReusedIdHandler : public IdHandlerInterface {
// An id handler for shared ids.
class SharedIdHandler : public IdHandlerInterface {
public:
- SharedIdHandler(
+ explicit SharedIdHandler(
id_namespaces::IdNamespaces id_namespace)
: id_namespace_(id_namespace) {
}
@@ -158,7 +158,7 @@ class SharedIdHandler : public IdHandlerInterface {
class ThreadSafeIdHandlerWrapper : public IdHandlerInterface {
public:
- ThreadSafeIdHandlerWrapper(IdHandlerInterface* id_handler)
+ explicit ThreadSafeIdHandlerWrapper(IdHandlerInterface* id_handler)
: id_handler_(id_handler) {
}
virtual ~ThreadSafeIdHandlerWrapper() { }
« no previous file with comments | « gpu/command_buffer/client/query_tracker.h ('k') | gpu/command_buffer/client/transfer_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698