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

Unified Diff: chrome/browser/ui/gtk/status_bubble_gtk.h

Issue 7686015: ui: Pass the parameter |languages| of StatusBubble::SetURL() as std::string. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix mac Created 9 years, 4 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_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_;

Powered by Google App Engine
This is Rietveld 408576698