diff options
author | mirandac@google.com <mirandac@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-03 17:23:00 +0000 |
---|---|---|
committer | mirandac@google.com <mirandac@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-03 17:23:00 +0000 |
commit | 9deebf20b712a0b1701a3d508a4a85528e05486e (patch) | |
tree | 156e1ffdef4cc8b88f120de31e541c960afa4837 /chrome/browser/gtk | |
parent | b62f11e7644f25e88b5aff178b566f562dea9445 (diff) | |
download | chromium_src-9deebf20b712a0b1701a3d508a4a85528e05486e.zip chromium_src-9deebf20b712a0b1701a3d508a4a85528e05486e.tar.gz chromium_src-9deebf20b712a0b1701a3d508a4a85528e05486e.tar.bz2 |
Change hover time to 1600 ms, and resize more quickly for smaller width change.
BUG= 1455
TEST= hover over link which is too long for status bubble. bubble should expand.
Review URL: http://codereview.chromium.org/149474
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46235 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk')
-rw-r--r-- | chrome/browser/gtk/status_bubble_gtk.cc | 4 | ||||
-rw-r--r-- | chrome/browser/gtk/status_bubble_gtk.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/gtk/status_bubble_gtk.cc b/chrome/browser/gtk/status_bubble_gtk.cc index fa7742b3..960797f 100644 --- a/chrome/browser/gtk/status_bubble_gtk.cc +++ b/chrome/browser/gtk/status_bubble_gtk.cc @@ -210,6 +210,10 @@ void StatusBubbleGtk::UpdateDownloadShelfVisibility(bool visible) { download_shelf_is_visible_ = visible; } +void StatusBubbleGtk::SetBubbleWidth(int width) { + NOTIMPLEMENTED(); +} + void StatusBubbleGtk::Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) { diff --git a/chrome/browser/gtk/status_bubble_gtk.h b/chrome/browser/gtk/status_bubble_gtk.h index c15bcd1..c648b8e 100644 --- a/chrome/browser/gtk/status_bubble_gtk.h +++ b/chrome/browser/gtk/status_bubble_gtk.h @@ -45,6 +45,8 @@ class StatusBubbleGtk : public StatusBubble, // the download shelf, when it is visible. virtual void UpdateDownloadShelfVisibility(bool visible); + virtual void SetBubbleWidth(int width); + // Overridden from NotificationObserver: void Observe(NotificationType type, const NotificationSource& source, |