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

Unified Diff: chrome/browser/ui/views/status_bubble_views.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/views/status_bubble_views.h
diff --git a/chrome/browser/ui/views/status_bubble_views.h b/chrome/browser/ui/views/status_bubble_views.h
index 9779296c066593aaea7a62032d61ac89c689f492..1752f833b87b780db4926ce6f0cab966f3be0041 100644
--- a/chrome/browser/ui/views/status_bubble_views.h
+++ b/chrome/browser/ui/views/status_bubble_views.h
@@ -56,7 +56,7 @@ class StatusBubbleViews : public StatusBubble {
// Overridden from StatusBubble:
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);
virtual void UpdateDownloadShelfVisibility(bool visible);
@@ -98,7 +98,7 @@ class StatusBubbleViews : public StatusBubble {
GURL url_;
// Used to elide the original URL again when we expand it.
- string16 languages_;
+ std::string languages_;
// Position relative to the base_view_.
gfx::Point original_position_;

Powered by Google App Engine
This is Rietveld 408576698