| Index: chrome/browser/extensions/extension_infobar_delegate.h
|
| ===================================================================
|
| --- chrome/browser/extensions/extension_infobar_delegate.h (revision 96544)
|
| +++ chrome/browser/extensions/extension_infobar_delegate.h (working copy)
|
| @@ -33,10 +33,12 @@
|
| ExtensionInfoBarDelegate(Browser* browser,
|
| TabContents* contents,
|
| const Extension* extension,
|
| - const GURL& url);
|
| + const GURL& url,
|
| + int height);
|
|
|
| const Extension* extension() { return extension_; }
|
| ExtensionHost* extension_host() { return extension_host_.get(); }
|
| + int height() { return height_; }
|
|
|
| void set_observer(DelegateObserver* observer) { observer_ = observer; }
|
|
|
| @@ -69,6 +71,9 @@
|
| const Extension* extension_;
|
| NotificationRegistrar registrar_;
|
|
|
| + // The requested height of the infobar (in pixels).
|
| + int height_;
|
| +
|
| // Whether we are currently animating to close. This is used to ignore
|
| // ExtensionView::PreferredSizeChanged notifications.
|
| bool closing_;
|
|
|