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

Unified Diff: content/browser/renderer_host/media/video_capture_controller.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
Index: content/browser/renderer_host/media/video_capture_controller.cc
diff --git a/content/browser/renderer_host/media/video_capture_controller.cc b/content/browser/renderer_host/media/video_capture_controller.cc
index 2a8f82fc1befdd3b36e69151dda4d25fab922ae2..6478ce9ba2f8d820c7561605241be0d35ee34b5f 100644
--- a/content/browser/renderer_host/media/video_capture_controller.cc
+++ b/content/browser/renderer_host/media/video_capture_controller.cc
@@ -54,7 +54,7 @@ struct VideoCaptureController::ControllerClient {
};
struct VideoCaptureController::SharedDIB {
- SharedDIB(base::SharedMemory* ptr)
+ explicit SharedDIB(base::SharedMemory* ptr)
: shared_memory(ptr),
references(0) {
}

Powered by Google App Engine
This is Rietveld 408576698