diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-01 18:46:37 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-01 18:46:37 +0000 |
commit | 3a1c05aafb9bd86ce88349fb06052792b182c964 (patch) | |
tree | 163906dd98691c278d952e45fd39a3efb94546f3 /chrome/browser/tab_contents | |
parent | e085c30ad5cb73ad9497bcf566d93e48127bc48c (diff) | |
download | chromium_src-3a1c05aafb9bd86ce88349fb06052792b182c964.zip chromium_src-3a1c05aafb9bd86ce88349fb06052792b182c964.tar.gz chromium_src-3a1c05aafb9bd86ce88349fb06052792b182c964.tar.bz2 |
Make the bookmark bar closing animation less janky.
(Forgot to do this when adding the animation.)
BUG=none
TEST=Close the bookmark bar on a page with a dark background/complex elements. There should be very little annoying white stuff at the bottom.
Review URL: http://codereview.chromium.org/118066
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17339 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents')
-rw-r--r-- | chrome/browser/tab_contents/tab_contents_delegate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/tab_contents/tab_contents_delegate.h b/chrome/browser/tab_contents/tab_contents_delegate.h index a67355e..465877f 100644 --- a/chrome/browser/tab_contents/tab_contents_delegate.h +++ b/chrome/browser/tab_contents/tab_contents_delegate.h @@ -174,7 +174,7 @@ class TabContentsDelegate { // Return much extra vertical space should be allotted to the // render view widget during various animations (e.g. infobar closing). // This is used to make painting look smoother. - virtual int GetExtraRenderViewHeight() { + virtual int GetExtraRenderViewHeight() const { return 0; } |