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

Unified Diff: ash/system/tray/tray_notification_view.cc

Issue 309113003: TrayNotificationView: Initialize uninitialized member in constructor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray/tray_notification_view.cc
diff --git a/ash/system/tray/tray_notification_view.cc b/ash/system/tray/tray_notification_view.cc
index d27296f814c89e9d9a7e98dbbfd25867e66f37b4..a728c6009ad2f8f26b580363de6d0354f9cfb080 100644
--- a/ash/system/tray/tray_notification_view.cc
+++ b/ash/system/tray/tray_notification_view.cc
@@ -20,7 +20,8 @@ namespace ash {
TrayNotificationView::TrayNotificationView(SystemTrayItem* owner, int icon_id)
: owner_(owner),
icon_id_(icon_id),
- icon_(NULL) {
+ icon_(NULL),
+ autoclose_delay_(0) {
}
TrayNotificationView::~TrayNotificationView() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698