diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-03 18:39:45 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-03 18:39:45 +0000 |
commit | fc1accc688f7cb6a35120640aa0e02a5c9055032 (patch) | |
tree | 0798897ce97459bb6387622eccb10bfcc496ac0c /chrome/browser/gtk/tabs/tab_renderer_gtk.h | |
parent | 415723327b754d66568d471e85d058006d46fa5f (diff) | |
download | chromium_src-fc1accc688f7cb6a35120640aa0e02a5c9055032.zip chromium_src-fc1accc688f7cb6a35120640aa0e02a5c9055032.tar.gz chromium_src-fc1accc688f7cb6a35120640aa0e02a5c9055032.tar.bz2 |
Display tooltips for gtk tabs that have elided titles.
BUG=none
TEST=Navigate to a URL with an elided title in the tab. Hover the mouse over the tab. A tooltip should appear with the full title. Navigate to google.com and hover over the tab. A tooltip should not appear (unless the tab is small enough).
Review URL: http://codereview.chromium.org/118161
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17507 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/tabs/tab_renderer_gtk.h')
-rw-r--r-- | chrome/browser/gtk/tabs/tab_renderer_gtk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/gtk/tabs/tab_renderer_gtk.h b/chrome/browser/gtk/tabs/tab_renderer_gtk.h index 2cff947..4f555a1 100644 --- a/chrome/browser/gtk/tabs/tab_renderer_gtk.h +++ b/chrome/browser/gtk/tabs/tab_renderer_gtk.h @@ -77,7 +77,7 @@ class TabRendererGtk : public AnimationDelegate { // TabContents. If only the loading state was updated, the loading_only flag // should be specified. If other things change, set this flag to false to // update everything. - void UpdateData(TabContents* contents, bool loading_only); + virtual void UpdateData(TabContents* contents, bool loading_only); // Updates the display to reflect the contents of this TabRenderer's model. void UpdateFromModel(); |