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

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

Issue 1838343003: ash: Initialize some pointers to null in SystemTray constructor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/system_tray.cc
diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc
index a3130a965c8d5c1437f575a0bfd8ad06291d1529..09d9fc33c84c092552b1523a4705b1c0a53b42b9 100644
--- a/ash/system/tray/system_tray.cc
+++ b/ash/system/tray/system_tray.cc
@@ -130,11 +130,15 @@ class SystemBubbleWrapper {
SystemTray::SystemTray(StatusAreaWidget* status_area_widget)
: TrayBackgroundView(status_area_widget),
items_(),
+ detailed_item_(nullptr),
default_bubble_height_(0),
hide_notifications_(false),
full_system_tray_menu_(false),
- tray_accessibility_(NULL),
- tray_date_(NULL) {
+ tray_accessibility_(nullptr),
+ tray_cast_(nullptr),
+ tray_date_(nullptr),
+ screen_capture_tray_item_(nullptr),
+ screen_share_tray_item_(nullptr) {
stevenjb 2016/03/30 00:47:57 Bleh. These probably shouldn't exist, but somethin
SetContentsBackground();
}
« 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