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

Unified Diff: chrome/browser/ui/cocoa/about_ipc_dialog.h

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
Index: chrome/browser/ui/cocoa/about_ipc_dialog.h
diff --git a/chrome/browser/ui/cocoa/about_ipc_dialog.h b/chrome/browser/ui/cocoa/about_ipc_dialog.h
index b6291d0c88e33836904b3fa4905590a2a80bf9ae..515b29cc568e6407bec79bfa05ffc04e9a208236 100644
--- a/chrome/browser/ui/cocoa/about_ipc_dialog.h
+++ b/chrome/browser/ui/cocoa/about_ipc_dialog.h
@@ -21,7 +21,8 @@ class AboutIPCController;
// Cocoa dialog. This class bridges from C++ to ObjC.
class AboutIPCBridge : public IPC::Logging::Consumer {
public:
- AboutIPCBridge(AboutIPCController* controller) : controller_(controller) { }
+ explicit AboutIPCBridge(AboutIPCController* controller)
+ : controller_(controller) { }
virtual ~AboutIPCBridge() { }
// IPC::Logging::Consumer implementation.

Powered by Google App Engine
This is Rietveld 408576698