summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk
diff options
context:
space:
mode:
authormirandac@google.com <mirandac@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-03 17:23:00 +0000
committermirandac@google.com <mirandac@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-03 17:23:00 +0000
commit9deebf20b712a0b1701a3d508a4a85528e05486e (patch)
tree156e1ffdef4cc8b88f120de31e541c960afa4837 /chrome/browser/gtk
parentb62f11e7644f25e88b5aff178b566f562dea9445 (diff)
downloadchromium_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.cc4
-rw-r--r--chrome/browser/gtk/status_bubble_gtk.h2
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,