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

Unified Diff: chrome/browser/ui/views/sad_tab_view.cc

Issue 9005015: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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
Index: chrome/browser/ui/views/sad_tab_view.cc
diff --git a/chrome/browser/ui/views/sad_tab_view.cc b/chrome/browser/ui/views/sad_tab_view.cc
index 1e65bc6f071f10dd9be3e95cae4a6c6cb20dbaaf..713a2bb57af9827db9c93e6bf7654aeeac35e68b 100644
--- a/chrome/browser/ui/views/sad_tab_view.cc
+++ b/chrome/browser/ui/views/sad_tab_view.cc
@@ -46,7 +46,8 @@ SadTabView::SadTabView(TabContents* tab_contents, Kind kind)
ResourceBundle::BaseFont)),
message_(NULL),
help_link_(NULL),
- feedback_link_(NULL) {
+ feedback_link_(NULL),
+ reload_tab_(NULL) {
DCHECK(tab_contents);
// Sometimes the user will never see this tab, so keep track of the total

Powered by Google App Engine
This is Rietveld 408576698