summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/status_bubble_gtk.h
diff options
context:
space:
mode:
authorjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-19 01:58:51 +0000
committerjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-19 01:58:51 +0000
commit3332977cf064c71b0d25f83bc6e35d8856059d56 (patch)
treead9443a60d95c2e48f39c0c75a63562b19f9601a /chrome/browser/gtk/status_bubble_gtk.h
parentb26c6df09911b5cba8b944bb8dc75ffd479b37ad (diff)
downloadchromium_src-3332977cf064c71b0d25f83bc6e35d8856059d56.zip
chromium_src-3332977cf064c71b0d25f83bc6e35d8856059d56.tar.gz
chromium_src-3332977cf064c71b0d25f83bc6e35d8856059d56.tar.bz2
Revert 18730 in attempt to repair Linux UI build bustage.
tbr=tc Review URL: http://codereview.chromium.org/132055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18782 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/status_bubble_gtk.h')
-rw-r--r--chrome/browser/gtk/status_bubble_gtk.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/chrome/browser/gtk/status_bubble_gtk.h b/chrome/browser/gtk/status_bubble_gtk.h
index da4bfe1..5de672b 100644
--- a/chrome/browser/gtk/status_bubble_gtk.h
+++ b/chrome/browser/gtk/status_bubble_gtk.h
@@ -36,18 +36,14 @@ class StatusBubbleGtk : public StatusBubble {
// the download shelf, when it is visible.
virtual void UpdateDownloadShelfVisibility(bool visible) { }
+ void SetStatus(const std::string& status_utf8);
+
// Top of the widget hierarchy for a StatusBubble. This top level widget is
// guarenteed to have its gtk_widget_name set to "status-bubble" for
// identification.
GtkWidget* widget() { return container_.get(); }
private:
- // The same as the public SetStatus method, but using utf8 instead.
- void SetStatus(const std::string& status_utf8);
-
- // Set the text in the gtk widget and handle when to show/hide the bubble.
- void UpdateWidgetText(const std::string& text);
-
// Sets the status bubble's location in the parent GtkFixed, shows the widget
// and makes sure that the status bubble has the highest z-order.
void Show();
@@ -64,11 +60,6 @@ class StatusBubbleGtk : public StatusBubble {
// The GtkLabel holding the text.
GtkWidget* label_;
- // We keep both the status and url that we want to show and try to pick the
- // right one to display to the user.
- std::string status_text_;
- std::string url_text_;
-
// A timer that hides our window after a delay.
ScopedRunnableMethodFactory<StatusBubbleGtk> timer_factory_;
};