diff options
Diffstat (limited to 'chrome/browser/ui/cocoa/tab_contents')
3 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/ui/cocoa/tab_contents/render_view_context_menu_mac.h b/chrome/browser/ui/cocoa/tab_contents/render_view_context_menu_mac.h index c43503a..43afdd7 100644 --- a/chrome/browser/ui/cocoa/tab_contents/render_view_context_menu_mac.h +++ b/chrome/browser/ui/cocoa/tab_contents/render_view_context_menu_mac.h @@ -31,7 +31,7 @@ class RenderViewContextMenuMac : public RenderViewContextMenu { virtual void UpdateMenuItem(int command_id, bool enabled, bool hidden, - const string16& title) OVERRIDE; + const base::string16& title) OVERRIDE; protected: // RenderViewContextMenu implementation. diff --git a/chrome/browser/ui/cocoa/tab_contents/render_view_context_menu_mac.mm b/chrome/browser/ui/cocoa/tab_contents/render_view_context_menu_mac.mm index 4caf5ce..47c4516 100644 --- a/chrome/browser/ui/cocoa/tab_contents/render_view_context_menu_mac.mm +++ b/chrome/browser/ui/cocoa/tab_contents/render_view_context_menu_mac.mm @@ -265,7 +265,7 @@ void RenderViewContextMenuMac::StopSpeaking() { void RenderViewContextMenuMac::UpdateMenuItem(int command_id, bool enabled, bool hidden, - const string16& title) { + const base::string16& title) { NSMenuItem* item = GetMenuItemByID(&menu_model_, [menu_controller_ menu], command_id); if (!item) diff --git a/chrome/browser/ui/cocoa/tab_contents/sad_tab_view.mm b/chrome/browser/ui/cocoa/tab_contents/sad_tab_view.mm index 411ffff..769ea74 100644 --- a/chrome/browser/ui/cocoa/tab_contents/sad_tab_view.mm +++ b/chrome/browser/ui/cocoa/tab_contents/sad_tab_view.mm @@ -147,7 +147,7 @@ static const CGFloat kTabHorzMargin = 13; // Get the help text and link. size_t linkOffset = 0; NSString* helpMessage(base::SysUTF16ToNSString(l10n_util::GetStringFUTF16( - IDS_SAD_TAB_HELP_MESSAGE, string16(), &linkOffset))); + IDS_SAD_TAB_HELP_MESSAGE, base::string16(), &linkOffset))); NSString* helpLink = l10n_util::GetNSString(IDS_SAD_TAB_HELP_LINK); NSFont* font = [NSFont systemFontOfSize:[NSFont smallSystemFontSize]]; [help_.get() setMessageAndLink:helpMessage |