Index: chrome/browser/ui/gtk/status_bubble_gtk.h |
diff --git a/chrome/browser/ui/gtk/status_bubble_gtk.h b/chrome/browser/ui/gtk/status_bubble_gtk.h |
index 5962972c6c1cf0d72dff93e941f64c844dbba060..3ffdf56985667164a8a408d5e571e28856b45e03 100644 |
--- a/chrome/browser/ui/gtk/status_bubble_gtk.h |
+++ b/chrome/browser/ui/gtk/status_bubble_gtk.h |
@@ -44,7 +44,7 @@ class StatusBubbleGtk : public StatusBubble, |
// StatusBubble implementation. |
virtual void SetStatus(const string16& status); |
tony
2011/08/22 16:31:02
While you're here, can you add OVERRIDE to these v
tfarina
2011/08/22 17:08:25
Done.
|
- virtual void SetURL(const GURL& url, const string16& languages); |
+ virtual void SetURL(const GURL& url, const std::string& languages); |
virtual void Hide(); |
virtual void MouseMoved(const gfx::Point& location, bool left_content); |
@@ -136,7 +136,7 @@ class StatusBubbleGtk : public StatusBubble, |
// Used to determine the character set that the user can read (for eliding |
// the url text). |
- string16 languages_; |
+ std::string languages_; |
// A timer that hides our window after a delay. |
base::OneShotTimer<StatusBubbleGtk> hide_timer_; |