Index: chrome/browser/ui/cocoa/status_bubble_mac.h |
diff --git a/chrome/browser/ui/cocoa/status_bubble_mac.h b/chrome/browser/ui/cocoa/status_bubble_mac.h |
index 861e84109faf1ff2408506480010abec5f661873..70de27ea7901e1fae3a32d8c1ac0533eb1ee19fa 100644 |
--- a/chrome/browser/ui/cocoa/status_bubble_mac.h |
+++ b/chrome/browser/ui/cocoa/status_bubble_mac.h |
@@ -37,7 +37,7 @@ class StatusBubbleMac : 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); |
virtual void UpdateDownloadShelfVisibility(bool visible); |
@@ -174,7 +174,7 @@ class StatusBubbleMac : public StatusBubble { |
// Needs to be passed to ElideURL if the original URL string is wider than |
// the standard bubble width. |
- string16 languages_; |
+ std::string languages_; |
DISALLOW_COPY_AND_ASSIGN(StatusBubbleMac); |
}; |