| Index: chrome/browser/ui/cocoa/applescript/tab_applescript.mm
|
| diff --git a/chrome/browser/ui/cocoa/applescript/tab_applescript.mm b/chrome/browser/ui/cocoa/applescript/tab_applescript.mm
|
| index 38295ed99e293dc5530f41c8f88898b682aba687..401eb6b26a5728e5cb31e9480df03e48af5f1641 100644
|
| --- a/chrome/browser/ui/cocoa/applescript/tab_applescript.mm
|
| +++ b/chrome/browser/ui/cocoa/applescript/tab_applescript.mm
|
| @@ -125,10 +125,9 @@
|
| return nil;
|
|
|
| std::wstring title;
|
| - // TODO(evan): use directionality of title.
|
| - // http://code.google.com/p/chromium/issues/detail?id=27094
|
| - if (entry != NULL)
|
| - title = UTF16ToWideHack(entry->title().string());
|
| + if (entry != NULL) {
|
| + title = UTF16ToWideHack(entry->title());
|
| + }
|
|
|
| return base::SysWideToNSString(title);
|
| }
|
|
|