| Index: chrome/browser/ui/browser.cc
|
| ===================================================================
|
| --- chrome/browser/ui/browser.cc (revision 98900)
|
| +++ chrome/browser/ui/browser.cc (working copy)
|
| @@ -3347,11 +3347,6 @@
|
| params.window_action = browser::NavigateParams::SHOW_WINDOW;
|
| params.user_gesture = user_gesture;
|
| browser::Navigate(¶ms);
|
| -
|
| - NotificationService::current()->Notify(
|
| - content::NOTIFICATION_TAB_ADDED,
|
| - Source<TabContentsDelegate>(this),
|
| - Details<TabContents>(new_contents));
|
| }
|
|
|
| void Browser::ActivateContents(TabContents* contents) {
|
| @@ -3773,6 +3768,11 @@
|
| NotifyTabOfFullscreenExitIfNecessary();
|
| }
|
|
|
| +void Browser::UpdatePreferredSize(TabContents* source,
|
| + const gfx::Size& pref_size) {
|
| + window_->UpdatePreferredSize(source, pref_size);
|
| +}
|
| +
|
| ///////////////////////////////////////////////////////////////////////////////
|
| // Browser, TabContentsWrapperDelegate implementation:
|
|
|
|
|