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

Unified Diff: chrome/browser/views/frame/browser_frame_gtk.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_gtk.cc
===================================================================
--- chrome/browser/views/frame/browser_frame_gtk.cc (revision 25624)
+++ chrome/browser/views/frame/browser_frame_gtk.cc (working copy)
@@ -43,7 +43,6 @@
}
void BrowserFrameGtk::TabStripCreated(TabStripWrapper* tabstrip) {
- root_view_->set_tabstrip(tabstrip);
}
int BrowserFrameGtk::GetMinimizeButtonOffset() const {
@@ -79,6 +78,6 @@
}
views::RootView* BrowserFrameGtk::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