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

Unified Diff: chrome/common/notification_type.h

Issue 384103: This patch is the rest of the lint cleanup minus the other open issue. (Closed)
Patch Set: Created 11 years, 1 month 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 | « chrome/common/notification_source.h ('k') | chrome/common/property_bag.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/notification_type.h
diff --git a/chrome/common/notification_type.h b/chrome/common/notification_type.h
index f9597e3dc9e2256b35a408788832208f6ca86eed..7479a25a6b474ba3cbbe17867ec3b87ee2a748a2 100644
--- a/chrome/common/notification_type.h
+++ b/chrome/common/notification_type.h
@@ -782,7 +782,7 @@ class NotificationType {
NOTIFICATION_TYPE_COUNT
};
- NotificationType(Type v) : value(v) {}
+ explicit NotificationType(Type v) : value(v) {}
bool operator==(NotificationType t) const { return value == t.value; }
bool operator!=(NotificationType t) const { return value != t.value; }
« no previous file with comments | « chrome/common/notification_source.h ('k') | chrome/common/property_bag.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698