| Index: chrome/browser/ui/extensions/shell_window.h
|
| diff --git a/chrome/browser/ui/extensions/shell_window.h b/chrome/browser/ui/extensions/shell_window.h
|
| index 2862fadef3a08799471857b2bc068f40925bf40b..f13fbb95b3185834be8b127c04afc63757e80c9c 100644
|
| --- a/chrome/browser/ui/extensions/shell_window.h
|
| +++ b/chrome/browser/ui/extensions/shell_window.h
|
| @@ -61,9 +61,9 @@ class ShellWindow : public content::NotificationObserver,
|
| WindowType window_type;
|
| Frame frame;
|
|
|
| - // Specify the initial bounds of the window. INT_MIN designates
|
| - // 'unspecified' for any coordinate, and should be replaced with a default
|
| - // value.
|
| + // Specify the initial content bounds of the window (excluding any window
|
| + // decorations). INT_MIN designates 'unspecified' for any coordinate, and
|
| + // should be replaced with a default value.
|
| gfx::Rect bounds;
|
|
|
| gfx::Size minimum_size;
|
| @@ -96,10 +96,8 @@ class ShellWindow : public content::NotificationObserver,
|
| Profile* profile() const { return profile_; }
|
| const gfx::Image& app_icon() const { return app_icon_; }
|
|
|
| - BaseWindow* GetBaseWindow();
|
| - gfx::NativeWindow GetNativeWindow() {
|
| - return GetBaseWindow()->GetNativeWindow();
|
| - }
|
| + NativeAppWindow* GetBaseWindow();
|
| + gfx::NativeWindow GetNativeWindow();
|
|
|
| // NativeAppWindows should call this to determine what the window's title
|
| // is on startup and from within UpdateWindowTitle().
|
|
|