Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1009)

Unified Diff: chrome/browser/ui/gtk/status_icons/status_icon_gtk.cc

Issue 8375027: Implement notifications for the DisplayBalloon method on Linux and Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing DisplayBalloon argument order (good). Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/gtk/status_icons/status_icon_gtk.cc
diff --git a/chrome/browser/ui/gtk/status_icons/status_icon_gtk.cc b/chrome/browser/ui/gtk/status_icons/status_icon_gtk.cc
index 53b16425a78789ab6eda756a47ecc174e466159d..eec617a188e760569156629a7d33ec35a7959234 100644
--- a/chrome/browser/ui/gtk/status_icons/status_icon_gtk.cc
+++ b/chrome/browser/ui/gtk/status_icons/status_icon_gtk.cc
@@ -42,13 +42,6 @@ void StatusIconGtk::SetToolTip(const string16& tool_tip) {
gtk_status_icon_set_tooltip(icon_, UTF16ToUTF8(tool_tip).c_str());
}
-void StatusIconGtk::DisplayBalloon(const SkBitmap& icon,
- const string16& title,
- const string16& contents) {
- // TODO(atwilson): Figure out the right thing to do here.
- // http://crbug.com/74970
-}
-
void StatusIconGtk::OnClick(GtkWidget* widget) {
DispatchClickEvent();
}

Powered by Google App Engine
This is Rietveld 408576698