| Index: chrome/browser/views/frame/browser_view.cc
|
| ===================================================================
|
| --- chrome/browser/views/frame/browser_view.cc (revision 16089)
|
| +++ chrome/browser/views/frame/browser_view.cc (working copy)
|
| @@ -1007,13 +1007,12 @@
|
| }
|
|
|
| void BrowserView::SaveWindowPlacement(const gfx::Rect& bounds,
|
| - bool maximized,
|
| - bool always_on_top) {
|
| + bool maximized) {
|
| // If IsFullscreen() is true, we've just changed into fullscreen mode, and
|
| // we're catching the going-into-fullscreen sizing and positioning calls,
|
| // which we want to ignore.
|
| if (!IsFullscreen() && browser_->ShouldSaveWindowPlacement()) {
|
| - WindowDelegate::SaveWindowPlacement(bounds, maximized, always_on_top);
|
| + WindowDelegate::SaveWindowPlacement(bounds, maximized);
|
| browser_->SaveWindowPlacement(bounds, maximized);
|
| }
|
| }
|
|
|