| Index: chrome/browser/views/frame/browser_view.cc
|
| ===================================================================
|
| --- chrome/browser/views/frame/browser_view.cc (revision 10330)
|
| +++ chrome/browser/views/frame/browser_view.cc (working copy)
|
| @@ -247,6 +247,12 @@
|
| toolbar_->GetLocationBarView()->location_entry()->ClosePopup();
|
| }
|
|
|
| +void BrowserView::WindowMoveOrResizeStarted() {
|
| + TabContents* tab_contents = GetSelectedTabContents();
|
| + if (tab_contents && tab_contents->AsWebContents())
|
| + tab_contents->AsWebContents()->WindowMoveOrResizeStarted();
|
| +}
|
| +
|
| gfx::Rect BrowserView::GetToolbarBounds() const {
|
| return toolbar_->bounds();
|
| }
|
|
|