| Index: chrome/browser/extensions/extension_tabs_module.cc
|
| diff --git a/chrome/browser/extensions/extension_tabs_module.cc b/chrome/browser/extensions/extension_tabs_module.cc
|
| index a42096850aeccc6f71e96bbcceb37f91d2158e5f..f493f1b2c7f221d160f2f0164c7485666b2ebe87 100644
|
| --- a/chrome/browser/extensions/extension_tabs_module.cc
|
| +++ b/chrome/browser/extensions/extension_tabs_module.cc
|
| @@ -374,15 +374,13 @@ bool CreateWindowFunction::RunImpl() {
|
|
|
| // Try to position the new browser relative its originating browser window.
|
| gfx::Rect window_bounds;
|
| - bool maximized;
|
| // The call offsets the bounds by kWindowTilePixels (defined in WindowSizer to
|
| // be 10)
|
| //
|
| // NOTE(rafaelw): It's ok if GetCurrentBrowser() returns NULL here.
|
| // GetBrowserWindowBounds will default to saved "default" values for the app.
|
| WindowSizer::GetBrowserWindowBounds(std::string(), gfx::Rect(),
|
| - GetCurrentBrowser(), &window_bounds,
|
| - &maximized);
|
| + GetCurrentBrowser(), &window_bounds);
|
|
|
| // Calculate popup and panels bounds separately.
|
| gfx::Rect popup_bounds;
|
|
|