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

Unified Diff: chrome/browser/views/frame/browser_frame_win.cc

Issue 202010: Fixes regression introduced in dnd refactoring. I removed a check for... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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/views/frame/browser_frame_win.cc
===================================================================
--- chrome/browser/views/frame/browser_frame_win.cc (revision 25624)
+++ chrome/browser/views/frame/browser_frame_win.cc (working copy)
@@ -69,7 +69,6 @@
}
void BrowserFrameWin::TabStripCreated(TabStripWrapper* tabstrip) {
- root_view_->set_tabstrip(tabstrip);
}
int BrowserFrameWin::GetMinimizeButtonOffset() const {
@@ -319,7 +318,7 @@
}
views::RootView* BrowserFrameWin::CreateRootView() {
- root_view_ = new BrowserRootView(this);
+ root_view_ = new BrowserRootView(browser_view_, this);
return root_view_;
}

Powered by Google App Engine
This is Rietveld 408576698