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

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

Issue 16871010: Rewrite scoped_ptr<T>(NULL) to use the default ctor in chrome/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
Index: chrome/browser/ui/views/frame/browser_view_layout.cc
diff --git a/chrome/browser/ui/views/frame/browser_view_layout.cc b/chrome/browser/ui/views/frame/browser_view_layout.cc
index ebb7eb91e2b1ed813e10f23e1d1b4e4c5beb405c..a534fef46a8e01ddebe9476c7baffba5604a329c 100644
--- a/chrome/browser/ui/views/frame/browser_view_layout.cc
+++ b/chrome/browser/ui/views/frame/browser_view_layout.cc
@@ -117,8 +117,7 @@ const int BrowserViewLayout::kToolbarTabStripVerticalOverlap = 3;
// BrowserViewLayout, public:
BrowserViewLayout::BrowserViewLayout()
- : delegate_(NULL),
- browser_(NULL),
+ : browser_(NULL),
browser_view_(NULL),
top_container_(NULL),
tab_strip_(NULL),
@@ -131,8 +130,7 @@ BrowserViewLayout::BrowserViewLayout()
download_shelf_(NULL),
immersive_mode_controller_(NULL),
dialog_host_(new WebContentsModalDialogHostViews(this)),
- web_contents_modal_dialog_top_y_(-1) {
-}
+ web_contents_modal_dialog_top_y_(-1) {}
BrowserViewLayout::~BrowserViewLayout() {
}

Powered by Google App Engine
This is Rietveld 408576698