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

Unified Diff: chrome/browser/ui/views/frame/browser_view.cc

Issue 2939583002: In-declaration initialization for BrowserView member variables (Closed)
Patch Set: More conversion Created 3 years, 6 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 | « chrome/browser/ui/views/frame/browser_view.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/frame/browser_view.cc
diff --git a/chrome/browser/ui/views/frame/browser_view.cc b/chrome/browser/ui/views/frame/browser_view.cc
index e9fe68b85300acb519b0cdb11b14d49ebdf14321..81bb366a1440f810a7c7a519f855c73a01a20f18 100644
--- a/chrome/browser/ui/views/frame/browser_view.cc
+++ b/chrome/browser/ui/views/frame/browser_view.cc
@@ -393,22 +393,7 @@ void BookmarkBarViewBackground::Paint(gfx::Canvas* canvas,
// static
const char BrowserView::kViewClassName[] = "BrowserView";
-BrowserView::BrowserView()
- : views::ClientView(nullptr, nullptr),
- frame_(nullptr),
- top_container_(nullptr),
- tabstrip_(nullptr),
- toolbar_(nullptr),
- find_bar_host_view_(nullptr),
- infobar_container_(nullptr),
- contents_web_view_(nullptr),
- devtools_web_view_(nullptr),
- contents_container_(nullptr),
- initialized_(false),
- handling_theme_changed_(false),
- in_process_fullscreen_(false),
- force_location_bar_focus_(false),
- activate_modal_dialog_factory_(this) {}
+BrowserView::BrowserView() : views::ClientView(nullptr, nullptr) {}
BrowserView::~BrowserView() {
// All the tabs should have been destroyed already. If we were closed by the
« no previous file with comments | « chrome/browser/ui/views/frame/browser_view.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698