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

Unified Diff: content/plugin/plugin_carbon_interpose_mac.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 | « content/gpu/gpu_child_thread.h ('k') | content/plugin/plugin_interpose_util_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/plugin/plugin_carbon_interpose_mac.cc
diff --git a/content/plugin/plugin_carbon_interpose_mac.cc b/content/plugin/plugin_carbon_interpose_mac.cc
index fd9f138253b3d587961ea76a9fae325de797a3e5..5f9bde12d315b385f6e80a213abd67e60c785e36 100644
--- a/content/plugin/plugin_carbon_interpose_mac.cc
+++ b/content/plugin/plugin_carbon_interpose_mac.cc
@@ -29,7 +29,7 @@ static CGRect CGRectForWindow(WindowRef window) {
struct WindowInfo {
uint32 window_id;
CGRect bounds;
- WindowInfo(WindowRef window) {
+ explicit WindowInfo(WindowRef window) {
window_id = HIWindowGetCGWindowID(window);
bounds = CGRectForWindow(window);
}
« no previous file with comments | « content/gpu/gpu_child_thread.h ('k') | content/plugin/plugin_interpose_util_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698