Chromium Code Reviews| 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_; |