| 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; }
|
|
|